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

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

Issue 9422019: isolates refactor: this change introduces 'dart:isolate' as a library. This is a (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: '' Created 8 years, 10 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: compiler/java/com/google/dart/compiler/resolver/CoreTypeProviderImplementation.java
diff --git a/compiler/java/com/google/dart/compiler/resolver/CoreTypeProviderImplementation.java b/compiler/java/com/google/dart/compiler/resolver/CoreTypeProviderImplementation.java
index f2e5bd02bdbb87975ae6a443f417d16e30cdb26b..b03310623e22915bd0ba74328630343b5364504a 100644
--- a/compiler/java/com/google/dart/compiler/resolver/CoreTypeProviderImplementation.java
+++ b/compiler/java/com/google/dart/compiler/resolver/CoreTypeProviderImplementation.java
@@ -30,7 +30,6 @@ public class CoreTypeProviderImplementation implements CoreTypeProvider {
private final InterfaceType mapLiteralType;
private final InterfaceType objectArrayType;
private final InterfaceType objectType;
- private final InterfaceType isolateType;
private final InterfaceType stringImplementation;
private final InterfaceType iteratorType;
@@ -51,7 +50,6 @@ public class CoreTypeProviderImplementation implements CoreTypeProvider {
this.mapLiteralType = getType("LinkedHashMapImplementation", scope, listener);
this.objectArrayType = getType(new String[] {"ListImplementation", "GrowableObjectArray"}, scope, listener);
this.objectType = getType("Object", scope, listener);
- this.isolateType = getType("Isolate", scope, listener);
this.stringImplementation = getType(new String[] {"StringImplementation", "OneByteString"}, scope, listener);
iteratorType = getType("Iterator", scope, listener);
}
@@ -173,11 +171,6 @@ public class CoreTypeProviderImplementation implements CoreTypeProvider {
}
@Override
- public InterfaceType getIsolateType() {
- return isolateType;
- }
-
- @Override
public InterfaceType getIteratorType(Type elementType) {
return iteratorType.subst(Arrays.asList(elementType),
iteratorType.getElement().getTypeParameters());

Powered by Google App Engine
This is Rietveld 408576698