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

Unified Diff: runtime/vm/intrinsifier_ia32.cc

Issue 10990055: Hide VM-only coreimpl List implementation types. These should not be (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix on x64 as well. Created 8 years, 3 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
Index: runtime/vm/intrinsifier_ia32.cc
diff --git a/runtime/vm/intrinsifier_ia32.cc b/runtime/vm/intrinsifier_ia32.cc
index 8bc661e7b89836c0735ccef516aa2c8e879db236..80f6a6d6367a71f2ee833b78b71ef18f468c2e4c 100644
--- a/runtime/vm/intrinsifier_ia32.cc
+++ b/runtime/vm/intrinsifier_ia32.cc
@@ -174,7 +174,7 @@ bool Intrinsifier::ImmutableArray_getIndexed(Assembler* assembler) {
static intptr_t ComputeObjectArrayTypeArgumentsOffset() {
- const String& class_name = String::Handle(Symbols::New("ObjectArray"));
+ const String& class_name = String::Handle(Symbols::New("_ObjectArray"));
const Class& cls = Class::Handle(
Library::Handle(Library::CoreImplLibrary()).LookupClass(class_name));
ASSERT(!cls.IsNull());
@@ -1290,7 +1290,7 @@ bool Intrinsifier::Object_equal(Assembler* assembler) {
}
-static const char* kFixedSizeArrayIteratorClassName = "FixedSizeArrayIterator";
+static const char* kFixedSizeArrayIteratorClassName = "_FixedSizeArrayIterator";
// Class 'FixedSizeArrayIterator':

Powered by Google App Engine
This is Rietveld 408576698