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

Unified Diff: compiler/java/com/google/dart/compiler/resolver/CoreTypeProviderImplementation.java

Issue 8321024: Clean up (most) uses of Array. Still more to come in the VM corelib code base. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' Created 9 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
« no previous file with comments | « no previous file | compiler/lib/corelib_impl.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: compiler/java/com/google/dart/compiler/resolver/CoreTypeProviderImplementation.java
===================================================================
--- compiler/java/com/google/dart/compiler/resolver/CoreTypeProviderImplementation.java (revision 486)
+++ compiler/java/com/google/dart/compiler/resolver/CoreTypeProviderImplementation.java (working copy)
@@ -41,7 +41,7 @@
this.numType = getType("num", scope, listener);
this.stringType = getType("String", scope, listener);
this.functionType = getType("Function", scope, listener);
- this.arrayType = getType("Array", scope, listener);
+ this.arrayType = getType("List", scope, listener);
this.dynamicType = Types.newDynamicType();
this.voidType = Types.newVoidType();
// Currently, there is no need for a special null type.
@@ -49,7 +49,7 @@
this.fallThroughError = getType("FallThroughError", scope, listener);
this.mapType = getType("Map", scope, listener);
this.mapLiteralType = getType("LinkedHashMapImplementation", scope, listener);
- this.objectArrayType = getType("ObjectArray", scope, listener);
+ this.objectArrayType = getType("ListImplementation", scope, listener);
this.objectType = getType("Object", scope, listener);
this.isolateType = getType("Isolate", scope, listener);
this.stringImplementation = getType("StringImplementation", scope, listener);
« no previous file with comments | « no previous file | compiler/lib/corelib_impl.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698