| 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 fcfa49be512b7399e1bd8afaa727a0e4f859b52e..4ed075e331a33e66c7800230de134385be0a8f70 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);
|
| }
|
|
|
| /**
|
|
|