| Index: tests/compiler/dart2js/mock_compiler.dart
|
| diff --git a/tests/compiler/dart2js/mock_compiler.dart b/tests/compiler/dart2js/mock_compiler.dart
|
| index f0b586fb33aebb67cdac3bf5a87f296bd14c5d30..398d2663019fa59f54c2aae4b6ab7bf722cc5b7c 100644
|
| --- a/tests/compiler/dart2js/mock_compiler.dart
|
| +++ b/tests/compiler/dart2js/mock_compiler.dart
|
| @@ -178,6 +178,7 @@ const String DEFAULT_INTERCEPTORSLIB = r'''
|
| get hashCode => throw "JSNull.hashCode not implemented.";
|
| String toString() => 'Null';
|
| Type get runtimeType => null;
|
| + noSuchMethod(x) => super.noSuchMethod(x);
|
| }
|
| class JSBool extends Interceptor implements bool {
|
| }
|
|
|