| Index: sdk/lib/_internal/compiler/js_lib/native_helper.dart
|
| diff --git a/sdk/lib/_internal/compiler/js_lib/native_helper.dart b/sdk/lib/_internal/compiler/js_lib/native_helper.dart
|
| index 42c5a95c6520d1d3a513b2851286d033854a4193..bec5bbae9b95df632c4e2979cfb295b7c18b199c 100644
|
| --- a/sdk/lib/_internal/compiler/js_lib/native_helper.dart
|
| +++ b/sdk/lib/_internal/compiler/js_lib/native_helper.dart
|
| @@ -111,7 +111,8 @@ get interceptorsByTag => JS_EMBEDDED_GLOBAL('=Object', INTERCEPTORS_BY_TAG);
|
| get leafTags => JS_EMBEDDED_GLOBAL('=Object', LEAF_TAGS);
|
|
|
| String findDispatchTagForInterceptorClass(interceptorClassConstructor) {
|
| - return JS('', r'#.$nativeSuperclassTag', interceptorClassConstructor);
|
| + return JS('', r'#.#',
|
| + interceptorClassConstructor, NATIVE_SUPERCLASS_TAG_NAME);
|
| }
|
|
|
| /**
|
|
|