| Index: lib/compiler/implementation/lib/js_helper.dart
|
| diff --git a/lib/compiler/implementation/lib/js_helper.dart b/lib/compiler/implementation/lib/js_helper.dart
|
| index e5476d45799af63c012c1651b46f318d88efaabe..86e3bab36cc2f5eea42d54cd7b9b41568c6e3d78 100644
|
| --- a/lib/compiler/implementation/lib/js_helper.dart
|
| +++ b/lib/compiler/implementation/lib/js_helper.dart
|
| @@ -1375,8 +1375,8 @@ void assertHelper(condition) {
|
| * Called by generated code when a method that must be statically
|
| * resolved cannot be found.
|
| */
|
| -void throwNoSuchMethod(obj, name, arguments) {
|
| - throw new NoSuchMethodError(obj, name, arguments);
|
| +void throwNoSuchMethod(obj, name, arguments, expectedArgumentNames) {
|
| + throw new NoSuchMethodError(obj, name, arguments, expectedArgumentNames);
|
| }
|
|
|
| /**
|
|
|