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

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: 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/ssa/codegen.dart
diff --git a/sdk/lib/_internal/compiler/implementation/ssa/codegen.dart b/sdk/lib/_internal/compiler/implementation/ssa/codegen.dart
index 638b0b52bfeabf82458b4288955b5d65f7d5a5d0..b2619787353a0e62d6a40e811ebab118d0fe8121 100644
--- a/sdk/lib/_internal/compiler/implementation/ssa/codegen.dart
+++ b/sdk/lib/_internal/compiler/implementation/ssa/codegen.dart
@@ -2664,8 +2664,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