| Index: sdk/lib/_internal/compiler/implementation/js_emitter/class_builder.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/js_emitter/class_builder.dart b/sdk/lib/_internal/compiler/implementation/js_emitter/class_builder.dart
|
| index 044368bb9d53833e27d581ce19ca2ef4a4096585..f39b26ea33cbc1ccf4b3579904bf11e63c3e0990 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/js_emitter/class_builder.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/js_emitter/class_builder.dart
|
| @@ -12,7 +12,6 @@ class ClassBuilder {
|
| final List<String> fields = <String>[];
|
|
|
| String superName;
|
| - String nativeName;
|
| String functionType;
|
| List<jsAst.Node> fieldMetadata;
|
|
|
| @@ -35,9 +34,6 @@ class ClassBuilder {
|
| jsAst.ObjectInitializer toObjectInitializer() {
|
| StringBuffer buffer = new StringBuffer();
|
| if (superName != null) {
|
| - if (nativeName != null) {
|
| - buffer.write('$nativeName/');
|
| - }
|
| buffer.write('$superName');
|
| if (functionType != null) {
|
| buffer.write(':$functionType');
|
|
|