| Index: tests/compiler/dart2js/js_backend_cps_ir_interceptors_test.dart
|
| diff --git a/tests/compiler/dart2js/js_backend_cps_ir_interceptors.dart b/tests/compiler/dart2js/js_backend_cps_ir_interceptors_test.dart
|
| similarity index 83%
|
| rename from tests/compiler/dart2js/js_backend_cps_ir_interceptors.dart
|
| rename to tests/compiler/dart2js/js_backend_cps_ir_interceptors_test.dart
|
| index 6640b9a65c9a3aa34c16c16211b7fadcba11c8c3..ef56ac0342b592dce9223fcaee0d7560871133d7 100644
|
| --- a/tests/compiler/dart2js/js_backend_cps_ir_interceptors.dart
|
| +++ b/tests/compiler/dart2js/js_backend_cps_ir_interceptors_test.dart
|
| @@ -1,12 +1,13 @@
|
| // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE file.
|
| +// VMOptions=-DUSE_CPS_IR=true
|
|
|
| // Tests of interceptors.
|
|
|
| library interceptors_tests;
|
|
|
| -import 'js_backend_cps_ir_test.dart';
|
| +import 'js_backend_cps_ir.dart';
|
|
|
| const List<TestEntry> tests = const [
|
| const TestEntry("""
|
| @@ -25,3 +26,8 @@ function() {
|
| return null;
|
| }"""),
|
| ];
|
| +
|
| +
|
| +void main() {
|
| + runTests(tests);
|
| +}
|
|
|