Index: pkg/compiler/lib/src/world.dart |
diff --git a/pkg/compiler/lib/src/world.dart b/pkg/compiler/lib/src/world.dart |
index 430b8f03324bb49f4d1e34ce909cff43d62e7494..22ca3a53bfbc7413f47b5aa9fecce450e3eb2dd5 100644 |
--- a/pkg/compiler/lib/src/world.dart |
+++ b/pkg/compiler/lib/src/world.dart |
@@ -5,7 +5,6 @@ |
library dart2js.world; |
import 'closure.dart' show ClosureClassElement, SynthesizedCallMethodElementX; |
-import 'common/backend_api.dart' show BackendClasses; |
import 'common.dart'; |
import 'constants/constant_system.dart'; |
import 'common_elements.dart' show CommonElements; |
@@ -43,9 +42,6 @@ abstract class World {} |
/// This precise knowledge about what's live in the program is later used in |
/// optimizations and other compiler decisions during code generation. |
abstract class ClosedWorld implements World { |
- /// Access to core classes used by the backend. |
- BackendClasses get backendClasses; |
- |
NativeData get nativeData; |
InterceptorData get interceptorData; |
@@ -389,7 +385,6 @@ enum ClassQuery { |
abstract class ClosedWorldBase implements ClosedWorld, ClosedWorldRefiner { |
final JavaScriptBackend _backend; |
- BackendClasses get backendClasses => _backend.backendClasses; |
InterceptorData get interceptorData => _backend.interceptorData; |
FunctionSet _allFunctions; |