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

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

Issue 2711783006: Remove HRuntimeType scheme for function types. (Closed)
Patch Set: format Created 3 years, 10 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 8e7dcbb6f78593188ca9e4020370f7c42f390e81..80f42f1b31d9a47fafd1791f443d717f624ac4b8 100644
--- a/pkg/compiler/lib/src/ssa/ssa_tracer.dart
+++ b/pkg/compiler/lib/src/ssa/ssa_tracer.dart
@@ -536,28 +536,6 @@ class HInstructionStringifier implements HVisitor<String> {
" ($inputs)";
}
- String visitReadTypeVariable(HReadTypeVariable node) {
- var inputs = node.inputs.map(temporaryId).join(', ');
- return "ReadTypeVariable: ${node.dartType} ${node.hasReceiver} $inputs";
- }
-
- String visitFunctionType(HFunctionType node) {
- var inputs = node.inputs.map(temporaryId).join(', ');
- return "FunctionType: ${node.dartType} $inputs";
- }
-
- String visitVoidType(HVoidType node) {
- return "VoidType";
- }
-
- String visitInterfaceType(HInterfaceType node) {
- return "InterfaceType: ${node.dartType}";
- }
-
- String visitDynamicType(HDynamicType node) {
- return "DynamicType";
- }
-
String visitAwait(HAwait node) {
return "Await: ${temporaryId(node.inputs[0])}";
}

Powered by Google App Engine
This is Rietveld 408576698