| Index: sdk/lib/_internal/compiler/implementation/ssa/tracer.dart
|
| ===================================================================
|
| --- sdk/lib/_internal/compiler/implementation/ssa/tracer.dart (revision 17552)
|
| +++ sdk/lib/_internal/compiler/implementation/ssa/tracer.dart (working copy)
|
| @@ -448,6 +448,9 @@
|
| String visitLazyStatic(HLazyStatic node)
|
| => "LazyStatic ${node.element.name.slowToString()}";
|
|
|
| + String visitOneShotInterceptor(HOneShotInterceptor node)
|
| + => visitInvokeDynamic(node, "one shot interceptor");
|
| +
|
| String visitStaticStore(HStaticStore node) {
|
| String lhs = node.element.name.slowToString();
|
| return "Static $lhs = ${temporaryId(node.inputs[0])}";
|
|
|