| Index: lib/compiler/implementation/ssa/tracer.dart
|
| diff --git a/lib/compiler/implementation/ssa/tracer.dart b/lib/compiler/implementation/ssa/tracer.dart
|
| index 154e2fb860d9f86a0d88437231fade55db6eda5a..2d7318639670fd566507bca7b209cfaee39cceb4 100644
|
| --- a/lib/compiler/implementation/ssa/tracer.dart
|
| +++ b/lib/compiler/implementation/ssa/tracer.dart
|
| @@ -408,6 +408,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])}";
|
|
|