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

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

Issue 2692303002: Split InterceptorData (Closed)
Patch Set: Created 3 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
« no previous file with comments | « pkg/compiler/lib/src/types/constants.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/world.dart
diff --git a/pkg/compiler/lib/src/world.dart b/pkg/compiler/lib/src/world.dart
index 505afab5c7a2e5e5e536cc1d4d058938a0e8fe3c..f2045fc637d70f6f1894e4f475bc0794f61c218a 100644
--- a/pkg/compiler/lib/src/world.dart
+++ b/pkg/compiler/lib/src/world.dart
@@ -21,6 +21,7 @@ import 'elements/elements.dart'
FieldElement;
import 'elements/resolution_types.dart';
import 'js_backend/backend.dart' show JavaScriptBackend;
+import 'js_backend/interceptor_data.dart' show InterceptorData;
import 'ordered_typeset.dart';
import 'types/masks.dart' show CommonMasks, FlatTypeMask, TypeMask;
import 'universe/class_set.dart';
@@ -45,6 +46,8 @@ abstract class ClosedWorld implements World {
/// Access to core classes used by the backend.
BackendClasses get backendClasses;
+ InterceptorData get interceptorData;
+
CommonElements get commonElements;
CommonMasks get commonMasks;
@@ -385,6 +388,7 @@ enum ClassQuery {
class ClosedWorldImpl implements ClosedWorld, ClosedWorldRefiner {
final JavaScriptBackend _backend;
BackendClasses get backendClasses => _backend.backendClasses;
+ InterceptorData get interceptorData => _backend.interceptorData;
FunctionSet _allFunctions;
final Iterable<TypedefElement> _allTypedefs;
« no previous file with comments | « pkg/compiler/lib/src/types/constants.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698