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

Unified Diff: sdk/lib/_internal/compiler/implementation/ssa/codegen.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/ssa/codegen.dart
diff --git a/sdk/lib/_internal/compiler/implementation/ssa/codegen.dart b/sdk/lib/_internal/compiler/implementation/ssa/codegen.dart
index 47d42c1b07dc053cf4103d5aac343c9e52dce064..48407f6778cc33046a863890bcc2f75ae030600b 100644
--- a/sdk/lib/_internal/compiler/implementation/ssa/codegen.dart
+++ b/sdk/lib/_internal/compiler/implementation/ssa/codegen.dart
@@ -2656,8 +2656,7 @@ class SsaCodeGenerator implements HVisitor, HBlockInformationVisitor {
}
ClassElement cls = node.dartType.element;
- var arguments = [
- backend.namer.elementAccess(backend.getImplementationClass(cls))];
+ var arguments = [backend.namer.elementAccess(cls)];
if (!typeArguments.isEmpty) {
arguments.add(new js.ArrayInitializer.from(typeArguments));
}

Powered by Google App Engine
This is Rietveld 408576698