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

Unified Diff: runtime/vm/parser.cc

Issue 11348035: Move StringImplementation from coreimpl to core as _StringImpl. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 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
« lib/compiler/implementation/lib/core_patch.dart ('K') | « runtime/vm/object.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/parser.cc
diff --git a/runtime/vm/parser.cc b/runtime/vm/parser.cc
index 114694078f53c19f34dfcd8364f246430ba93a0e..c4da0a75778d10499b5015a2ba00a24842c09404 100644
--- a/runtime/vm/parser.cc
+++ b/runtime/vm/parser.cc
@@ -5803,7 +5803,7 @@ AstNode* Parser::ParseForStatement(String* label_name) {
AstNode* Parser::MakeStaticCall(const String& cls_name,
const String& func_name,
ArgumentListNode* arguments) {
- const Class& cls = Class::Handle(LookupImplClass(cls_name));
+ const Class& cls = Class::Handle(LookupCoreClass(cls_name));
ASSERT(!cls.IsNull());
const Function& func = Function::ZoneHandle(
Resolver::ResolveStatic(cls,
@@ -9247,7 +9247,7 @@ AstNode* Parser::ParseNewOperator() {
String& Parser::Interpolate(ArrayNode* values) {
const String& class_name = String::Handle(Symbols::StringBase());
- const Class& cls = Class::Handle(LookupImplClass(class_name));
+ const Class& cls = Class::Handle(LookupCoreClass(class_name));
ASSERT(!cls.IsNull());
const String& func_name = String::Handle(Symbols::Interpolate());
const Function& func =
« lib/compiler/implementation/lib/core_patch.dart ('K') | « runtime/vm/object.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698