| Index: lib/compiler/implementation/ssa/tracer.dart
|
| diff --git a/lib/compiler/implementation/ssa/tracer.dart b/lib/compiler/implementation/ssa/tracer.dart
|
| index ea1c1cf27ee131a110891cb1f3b2286c74063b9f..808a125ceb41e535bf3db17f15b84d72ae0a810f 100644
|
| --- a/lib/compiler/implementation/ssa/tracer.dart
|
| +++ b/lib/compiler/implementation/ssa/tracer.dart
|
| @@ -417,6 +417,10 @@ class HInstructionStringifier implements HVisitor<String> {
|
|
|
| String visitStatic(HStatic node)
|
| => "Static ${node.element.name.slowToString()}";
|
| +
|
| + String visitLazyStatic(HLazyStatic node)
|
| + => "LazyStatic ${node.element.name.slowToString()}";
|
| +
|
| String visitStaticStore(HStaticStore node) {
|
| String lhs = node.element.name.slowToString();
|
| return "Static $lhs = ${temporaryId(node.inputs[0])}";
|
|
|