| 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 5a180261b0950696b593ad5977f178849fb3a358..13b5c54cb156cdb04475dd9316c6937df3015902 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);
|
| }
|
|
|
| /**
|
|
|