| Index: frog/lib/natives.dart
|
| diff --git a/frog/lib/natives.dart b/frog/lib/natives.dart
|
| index 79bfd44b37d0b3707c23d38aaa98156242a78b97..6321634a20a8d9be1af9b0a4ee30be3a95fa21fa 100644
|
| --- a/frog/lib/natives.dart
|
| +++ b/frog/lib/natives.dart
|
| @@ -45,8 +45,7 @@ if (e instanceof TypeError) {
|
| if (e.arguments[0] == 'call' || e.arguments[0] == 'apply') {
|
| return attachStack(new ObjectNotClosureException());
|
| } else {
|
| - // TODO(jmesserly): can this ever happen?
|
| - // sra: Yes, seen on '$add'.
|
| + // TODO(jmesserly): fix noSuchMethod on operators so we don't hit this
|
| return attachStack(new NoSuchMethodException('', e.arguments[0], []));
|
| }
|
| break;
|
|
|