| Index: sdk/lib/_internal/compiler/implementation/elements/elements.dart
|
| ===================================================================
|
| --- sdk/lib/_internal/compiler/implementation/elements/elements.dart (revision 16024)
|
| +++ sdk/lib/_internal/compiler/implementation/elements/elements.dart (working copy)
|
| @@ -1761,6 +1761,9 @@
|
|
|
| bool isInterface() => false;
|
| bool isNative() => nativeTagInfo != null;
|
| + void setNative(String name) {
|
| + nativeTagInfo = new SourceString(name);
|
| + }
|
| int get hashCode => id;
|
|
|
| Scope buildScope() => new ClassScope(enclosingElement.buildScope(), this);
|
|
|