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

Unified Diff: sdk/lib/_internal/compiler/implementation/js_backend/native_emitter.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_backend/native_emitter.dart
diff --git a/sdk/lib/_internal/compiler/implementation/js_backend/native_emitter.dart b/sdk/lib/_internal/compiler/implementation/js_backend/native_emitter.dart
index 52284600962a8bf3694d1ff7340d890fe107884c..fae89062484d8a7f1c6a5a04e4f9f0d2f266f7d9 100644
--- a/sdk/lib/_internal/compiler/implementation/js_backend/native_emitter.dart
+++ b/sdk/lib/_internal/compiler/implementation/js_backend/native_emitter.dart
@@ -325,7 +325,7 @@ class NativeEmitter {
String superName = backend.namer.getNameOfClass(superclass);
ClassBuilder builder = new ClassBuilder(backend.namer);
- emitter.classEmitter.emitClassConstructor(classElement, builder, null);
+ emitter.classEmitter.emitClassConstructor(classElement, builder);
bool hasFields = emitter.classEmitter.emitFields(
classElement, builder, superName, classIsNative: true);
int propertyCount = builder.properties.length;

Powered by Google App Engine
This is Rietveld 408576698