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

Unified Diff: pkg/compiler/lib/src/ssa/ssa_tracer.dart

Issue 891673003: dart2js: Refactoring, documentation, and a few bugfixes in Namer class. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: MEGAPATCH Created 5 years, 11 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: pkg/compiler/lib/src/ssa/ssa_tracer.dart
diff --git a/pkg/compiler/lib/src/ssa/ssa_tracer.dart b/pkg/compiler/lib/src/ssa/ssa_tracer.dart
index 09d8069766eaba9cb227e1f1ae82953d0d1c6031..14b6f95e589e005c1b10039e71b83cbc90941175 100644
--- a/pkg/compiler/lib/src/ssa/ssa_tracer.dart
+++ b/pkg/compiler/lib/src/ssa/ssa_tracer.dart
@@ -289,7 +289,8 @@ class HInstructionStringifier implements HVisitor<String> {
String value = temporaryId(node.inputs[0]);
if (node.interceptedClasses != null) {
JavaScriptBackend backend = compiler.backend;
- String cls = backend.namer.getInterceptorSuffix(node.interceptedClasses);
+ String cls =
+ backend.namer.suffixForGetInterceptor(node.interceptedClasses);
return "Intercept ($cls): $value";
}
return "Intercept: $value";

Powered by Google App Engine
This is Rietveld 408576698