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

Unified Diff: sdk/lib/_internal/compiler/implementation/ssa/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/ssa/builder.dart
diff --git a/sdk/lib/_internal/compiler/implementation/ssa/builder.dart b/sdk/lib/_internal/compiler/implementation/ssa/builder.dart
index 5b72b5cb485710025c507c931db959145aa4fd7f..75e86d8cfa54e52aa09748b7e1d3a3bed75f1b79 100644
--- a/sdk/lib/_internal/compiler/implementation/ssa/builder.dart
+++ b/sdk/lib/_internal/compiler/implementation/ssa/builder.dart
@@ -3208,8 +3208,7 @@ class SsaBuilder extends ResolvedVisitor {
HInstruction representations =
buildTypeArgumentRepresentations(type);
add(representations);
- String operator =
- backend.namer.operatorIs(backend.getImplementationClass(element));
+ String operator = backend.namer.operatorIs(element);
HInstruction isFieldName = addConstantString(operator);
HInstruction asFieldName = compiler.world.hasAnySubtype(element)
? addConstantString(backend.namer.substitutionName(element))

Powered by Google App Engine
This is Rietveld 408576698