| Index: lib/compiler/implementation/ssa/codegen.dart
|
| diff --git a/lib/compiler/implementation/ssa/codegen.dart b/lib/compiler/implementation/ssa/codegen.dart
|
| index 94c13c606302476eb09f8abc939e83d83bd85821..a6efd18ae45dcfe706c1ab73781173a6294e7590 100644
|
| --- a/lib/compiler/implementation/ssa/codegen.dart
|
| +++ b/lib/compiler/implementation/ssa/codegen.dart
|
| @@ -1761,9 +1761,9 @@ class SsaCodeGenerator implements HVisitor, HBlockInformationVisitor {
|
| Type type = node.typeExpression;
|
| Element element = type.element;
|
| if (element.kind === ElementKind.TYPE_VARIABLE) {
|
| - compiler.unimplemented("visitIs for type variables");
|
| + compiler.unimplemented("visitIs for type variables", instruction: node);
|
| } else if (element.kind === ElementKind.TYPEDEF) {
|
| - compiler.unimplemented("visitIs for typedefs");
|
| + compiler.unimplemented("visitIs for typedefs", instruction: node);
|
| }
|
| compiler.registerIsCheck(type.element);
|
| LibraryElement coreLibrary = compiler.coreLibrary;
|
|
|