| Index: tests/compiler/dart2js/kernel/impact_test.dart
|
| diff --git a/tests/compiler/dart2js/kernel/impact_test.dart b/tests/compiler/dart2js/kernel/impact_test.dart
|
| index 67f4adcf38a034def132ebee2ef73d831ba3e1dd..f8f10fecef81b235ac629ff966bbc3ce34dd0be6 100644
|
| --- a/tests/compiler/dart2js/kernel/impact_test.dart
|
| +++ b/tests/compiler/dart2js/kernel/impact_test.dart
|
| @@ -30,6 +30,7 @@ import '../serialization/test_helper.dart';
|
|
|
| const Map<String, String> SOURCE = const <String, String>{
|
| 'main.dart': r'''
|
| +import 'dart:_foreign_helper';
|
| import 'helper.dart';
|
| import 'dart:html';
|
|
|
| @@ -175,6 +176,7 @@ main() {
|
| testStaticGenericMethod();
|
| testInstanceGenericMethod();
|
| testDynamicPrivateMethodInvoke();
|
| + testJSCall();
|
| }
|
|
|
| testEmpty() {}
|
| @@ -601,6 +603,7 @@ testInstanceGenericMethod() {
|
| }
|
|
|
| testDynamicPrivateMethodInvoke([o]) => o._privateMethod();
|
| +testJSCall() => JS('int|bool', '#', null);
|
| ''',
|
| 'helper.dart': '''
|
| class Class {
|
|
|