| Index: sdk/lib/_internal/compiler/implementation/js_backend/backend.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/js_backend/backend.dart b/sdk/lib/_internal/compiler/implementation/js_backend/backend.dart
|
| index 9151b71b64d9c5716c39bb68541acdd54f0cf6f0..f5a51a49e0451c8d405704fc2dce24365b9f7ced 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/js_backend/backend.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/js_backend/backend.dart
|
| @@ -107,6 +107,7 @@ class JavaScriptBackend extends Backend {
|
| ClassElement noSideEffectsClass;
|
| ClassElement noThrowsClass;
|
| ClassElement noInlineClass;
|
| + ClassElement irRepresentationClass;
|
|
|
| Element getInterceptorMethod;
|
| Element interceptedNames;
|
| @@ -521,6 +522,7 @@ class JavaScriptBackend extends Backend {
|
| noSideEffectsClass = compiler.findHelper('NoSideEffects');
|
| noThrowsClass = compiler.findHelper('NoThrows');
|
| noInlineClass = compiler.findHelper('NoInline');
|
| + irRepresentationClass = compiler.findHelper('IrRepresentation');
|
| }
|
|
|
| void validateInterceptorImplementsAllObjectMethods(
|
|
|