| 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;
|
|
|