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

Unified Diff: pkg/compiler/lib/src/world.dart

Issue 2813093002: Remove BackendClasses and JavaScriptBackendClasses. (Closed)
Patch Set: . Created 3 years, 8 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: 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;
« no previous file with comments | « pkg/compiler/lib/src/universe/function_set.dart ('k') | tests/compiler/dart2js/constant_expression_evaluate_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698