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 559185112ad99d3a5856569ed67d54c42619bd52..131f4dca8e168c942b1d75fea7e4e50470779038 100644 |
--- a/pkg/compiler/lib/src/ssa/ssa_tracer.dart |
+++ b/pkg/compiler/lib/src/ssa/ssa_tracer.dart |
@@ -506,6 +506,18 @@ class HInstructionStringifier implements HVisitor<String> { |
return "RangeConversion: ${node.checkedInput}"; |
} |
+ String visitTypeInfoReadRaw(HTypeInfoReadRaw node) { |
+ return "TypeInfoReadRaw"; |
+ } |
+ |
+ String visitTypeInfoReadVariable(HTypeInfoReadVariable node) { |
+ return "TypeInfoReadVariable ${node.variable}"; |
+ } |
+ |
+ String visitTypeInfoExpression(HTypeInfoExpression node) { |
+ return "TypeInfoExpression ${node.kindAsString} ${node.dartType}"; |
+ } |
+ |
String visitReadTypeVariable(HReadTypeVariable node) { |
return "ReadTypeVariable: ${node.dartType} ${node.hasReceiver}"; |
} |