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

Unified Diff: runtime/vm/object.cc

Issue 8676001: Implement type checking of list literals (issue 220). (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' Created 9 years, 1 month 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 | « runtime/lib/literal_map_factory.dart ('k') | runtime/vm/parser.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object.cc
===================================================================
--- runtime/vm/object.cc (revision 1805)
+++ runtime/vm/object.cc (working copy)
@@ -28,8 +28,6 @@
namespace dart {
-DEFINE_FLAG(bool, expose_core_impl, false,
- "Enables access to core implementation library (only for testing).");
DEFINE_FLAG(bool, generate_gdb_symbols, false,
"Generate symbols of generated dart functions for debugging with GDB");
@@ -4170,10 +4168,6 @@
Library& core_lib = Library::Handle(Library::CoreLibrary());
ASSERT(!core_lib.IsNull());
result.AddImport(core_lib);
- if (FLAG_expose_core_impl) {
- // Make implementation corelib visible to Dart code.
- result.AddImport(Library::Handle(Library::CoreImplLibrary()));
- }
}
return result.raw();
}
« no previous file with comments | « runtime/lib/literal_map_factory.dart ('k') | runtime/vm/parser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698