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

Unified Diff: pkg/compiler/lib/src/inferrer/type_graph_dump.dart

Issue 2963983002: Further splitting of inference type-info (Closed)
Patch Set: Updated cf. comments. Created 3 years, 6 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
« no previous file with comments | « pkg/compiler/lib/src/inferrer/node_tracer.dart ('k') | pkg/compiler/lib/src/inferrer/type_graph_nodes.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/inferrer/type_graph_dump.dart
diff --git a/pkg/compiler/lib/src/inferrer/type_graph_dump.dart b/pkg/compiler/lib/src/inferrer/type_graph_dump.dart
index fa8c9ef86132887e4bd879b9cc837eadd2de0d8d..65fc6ff811463d7e03642eb882c5244869854219 100644
--- a/pkg/compiler/lib/src/inferrer/type_graph_dump.dart
+++ b/pkg/compiler/lib/src/inferrer/type_graph_dump.dart
@@ -408,11 +408,11 @@ class _GraphGenerator extends TypeInformationVisitor {
}
void visitMemberTypeInformation(MemberTypeInformation info) {
- addNode(info, 'Member\n${info.element}');
+ addNode(info, 'Member\n${info.debugName}');
}
void visitParameterTypeInformation(ParameterTypeInformation info) {
- addNode(info, 'Parameter ${info.element?.name ?? ''}');
+ addNode(info, 'Parameter ${info.debugName}');
}
void visitClosureTypeInformation(ClosureTypeInformation info) {
« no previous file with comments | « pkg/compiler/lib/src/inferrer/node_tracer.dart ('k') | pkg/compiler/lib/src/inferrer/type_graph_nodes.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698