| Index: sdk/lib/_internal/compiler/implementation/elements/elements.dart
 | 
| ===================================================================
 | 
| --- sdk/lib/_internal/compiler/implementation/elements/elements.dart	(revision 16320)
 | 
| +++ sdk/lib/_internal/compiler/implementation/elements/elements.dart	(working copy)
 | 
| @@ -1770,6 +1770,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);
 | 
| 
 |