| Index: tests/compiler/dart2js/mock_compiler.dart
|
| diff --git a/tests/compiler/dart2js/mock_compiler.dart b/tests/compiler/dart2js/mock_compiler.dart
|
| index ce1c120e4e3f81620fec22d0a17b998ff3979bda..5ce9930d63f38a644c52358fb053d51f21e3762e 100644
|
| --- a/tests/compiler/dart2js/mock_compiler.dart
|
| +++ b/tests/compiler/dart2js/mock_compiler.dart
|
| @@ -179,6 +179,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 {
|
| }
|
|
|