| Index: dart/frog/leg/compiler.dart
|
| diff --git a/dart/frog/leg/compiler.dart b/dart/frog/leg/compiler.dart
|
| index a67dc94fec2e5284e1b880545abdfcc5776f0d60..34cb2ec0dbbbf0f8ae2489891138244052cb6cdd 100644
|
| --- a/dart/frog/leg/compiler.dart
|
| +++ b/dart/frog/leg/compiler.dart
|
| @@ -70,8 +70,9 @@ class Compiler implements Canceler, Logger {
|
| if (!condition) cancel('failed assertion in leg');
|
| }
|
|
|
| - void unimplemented(String methodName) {
|
| - cancel("$methodName not implemented");
|
| + void unimplemented(String methodName,
|
| + [Node node, Token token, HInstruction instruction]) {
|
| + cancel("$methodName not implemented", node, token, instruction);
|
| }
|
|
|
| void cancel([String reason, Node node, Token token,
|
|
|