| Index: pkg/compiler/lib/src/js_backend/js_interop_analysis.dart
|
| diff --git a/pkg/compiler/lib/src/js_backend/js_interop_analysis.dart b/pkg/compiler/lib/src/js_backend/js_interop_analysis.dart
|
| index b2ad759f7454b2b20e583d7c16aec3f6d9e7af15..b9e3cc511a3733bec97905ce514c651bdaeab82e 100644
|
| --- a/pkg/compiler/lib/src/js_backend/js_interop_analysis.dart
|
| +++ b/pkg/compiler/lib/src/js_backend/js_interop_analysis.dart
|
| @@ -45,7 +45,8 @@ class JsInteropAnalysis {
|
| if (_inCodegen) return;
|
|
|
| if (helpers.jsAnnotationClass != null) {
|
| - nameField = helpers.jsAnnotationClass.lookupMember('name');
|
| + ClassElement cls = helpers.jsAnnotationClass;
|
| + nameField = cls.lookupMember('name');
|
| backend.compiler.libraryLoader.libraries
|
| .forEach(processJsInteropAnnotationsInLibrary);
|
| }
|
|
|