| Index: lib/compiler/implementation/lib/core_patch.dart
|
| diff --git a/lib/compiler/implementation/lib/core_patch.dart b/lib/compiler/implementation/lib/core_patch.dart
|
| index aea4c6c7c2e0df68062931c651de31cddc668398..0f6c7d1e82e012b31b3291bda2da06fa51a89b85 100644
|
| --- a/lib/compiler/implementation/lib/core_patch.dart
|
| +++ b/lib/compiler/implementation/lib/core_patch.dart
|
| @@ -11,6 +11,6 @@ patch class Object {
|
| }
|
|
|
| patch void noSuchMethod(String name, List args) {
|
| - throw new NoSuchMethodException(this, name, args);
|
| + throw new NoSuchMethodError(this, name, args);
|
| }
|
| }
|
|
|