Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1271)

Unified Diff: sdk/lib/_internal/compiler/implementation/js_emitter/class_builder.dart

Issue 236313012: Don't hide interceptors in mirrors. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Minor cleanups. Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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');

Powered by Google App Engine
This is Rietveld 408576698