| Index: sdk/lib/_internal/lib/core_patch.dart
|
| diff --git a/sdk/lib/_internal/lib/core_patch.dart b/sdk/lib/_internal/lib/core_patch.dart
|
| index 5e2e1d2eac4eb908a454f58a93923cd391208289..4e342d9fa3476c67c00189f5e7904acb08c630d8 100644
|
| --- a/sdk/lib/_internal/lib/core_patch.dart
|
| +++ b/sdk/lib/_internal/lib/core_patch.dart
|
| @@ -35,9 +35,9 @@ patch class Object {
|
| patch dynamic noSuchMethod(Invocation invocation) {
|
| throw new NoSuchMethodError(
|
| this,
|
| - _symbolToString(invocation.memberName),
|
| + invocation.memberName,
|
| invocation.positionalArguments,
|
| - _symbolMapToStringMap(invocation.namedArguments));
|
| + invocation.namedArguments);
|
| }
|
|
|
| patch Type get runtimeType => getRuntimeType(this);
|
|
|