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

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: Address comments. 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 53c590901abbce7a762663fdb4b0f1fbc2e5af1a..4c594e003e0d5b6cb84c46d2f558ba27529a6fa3 100644
--- a/sdk/lib/_internal/compiler/implementation/js_backend/native_emitter.dart
+++ b/sdk/lib/_internal/compiler/implementation/js_backend/native_emitter.dart
@@ -295,7 +295,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