Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(857)

Unified Diff: vm/bootstrap_nocorelib.cc

Issue 10834284: - Split Dart core libraries into shared sources and patch sources. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « vm/bootstrap.cc ('k') | vm/dart_api_impl_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/bootstrap_nocorelib.cc
===================================================================
--- vm/bootstrap_nocorelib.cc (revision 10607)
+++ vm/bootstrap_nocorelib.cc (working copy)
@@ -15,31 +15,31 @@
DEFINE_FLAG(bool, print_bootstrap, false, "Print the bootstrap source.");
-RawScript* Bootstrap::LoadScript() {
+RawScript* Bootstrap::LoadCoreScript(bool is_patch) {
UNREACHABLE();
return Script::null();
}
-RawScript* Bootstrap::LoadImplScript() {
+RawScript* Bootstrap::LoadCoreImplScript(bool is_patch) {
UNREACHABLE();
return Script::null();
}
-RawScript* Bootstrap::LoadMathScript() {
+RawScript* Bootstrap::LoadMathScript(bool is_patch) {
UNREACHABLE();
return Script::null();
}
-RawScript* Bootstrap::LoadIsolateScript() {
+RawScript* Bootstrap::LoadIsolateScript(bool is_patch) {
UNREACHABLE();
return Script::null();
}
-RawScript* Bootstrap::LoadMirrorsScript() {
+RawScript* Bootstrap::LoadMirrorsScript(bool is_patch) {
UNREACHABLE();
return Script::null();
}
« no previous file with comments | « vm/bootstrap.cc ('k') | vm/dart_api_impl_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698