| Index: pkg/dev_compiler/tool/input_sdk/patch/core_patch.dart
|
| diff --git a/pkg/dev_compiler/tool/input_sdk/patch/core_patch.dart b/pkg/dev_compiler/tool/input_sdk/patch/core_patch.dart
|
| index da180c4d7cf0aa74221bd1eca79d172e5476d6c1..5e8bfccf0823cc78cb3535f994ab6f59b5c23a51 100644
|
| --- a/pkg/dev_compiler/tool/input_sdk/patch/core_patch.dart
|
| +++ b/pkg/dev_compiler/tool/input_sdk/patch/core_patch.dart
|
| @@ -569,6 +569,12 @@ class NoSuchMethodError {
|
| _namedArguments = namedArguments,
|
| _existingArgumentNames = existingArgumentNames;
|
|
|
| + @patch
|
| + NoSuchMethodError.withInvocation(Object receiver, Invocation invocation) {
|
| + throw new UnsupportedError(
|
| + "'NoSuchMethodError.withInvocation' is not supported");
|
| + }
|
| +
|
| @patch
|
| String toString() {
|
| StringBuffer sb = new StringBuffer('');
|
|
|