| Index: sdk/lib/_internal/lib/interceptors.dart
|
| diff --git a/sdk/lib/_internal/lib/interceptors.dart b/sdk/lib/_internal/lib/interceptors.dart
|
| index 05af57ea70805ff6807128d21b389cd2648b65e2..1477ea0e115982983e744b60199ed7f307e4a7fd 100644
|
| --- a/sdk/lib/_internal/lib/interceptors.dart
|
| +++ b/sdk/lib/_internal/lib/interceptors.dart
|
| @@ -329,7 +329,12 @@ class JSNull extends Interceptor implements Null {
|
|
|
| int get hashCode => 0;
|
|
|
| + // The spec guarantees that `null` is the singleton instance of the `Null`
|
| + // class. In the mirrors library we also have to patch the `type` getter to
|
| + // special case `null`.
|
| Type get runtimeType => Null;
|
| +
|
| + dynamic noSuchMethod(Invocation invocation) => super.noSuchMethod(invocation);
|
| }
|
|
|
| /**
|
|
|