OLD | NEW |
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 // Helper file that can be used to manually test the stability of incremental | 5 // Helper file that can be used to manually test the stability of incremental |
6 // compilation. Currently this test is not run automatically. | 6 // compilation. Currently this test is not run automatically. |
7 | 7 |
8 import 'dart:async'; | 8 import 'dart:async'; |
9 | 9 |
10 import 'dart:io'; | 10 import 'dart:io'; |
11 | 11 |
12 import 'dart:profiler' show | 12 import 'dart:developer' show |
13 UserTag; | 13 UserTag; |
14 | 14 |
15 import 'package:dart2js_incremental/dart2js_incremental.dart' show | 15 import 'package:dart2js_incremental/dart2js_incremental.dart' show |
16 IncrementalCompiler; | 16 IncrementalCompiler; |
17 | 17 |
18 import '../memory_source_file_helper.dart' show | 18 import '../memory_source_file_helper.dart' show |
19 Compiler; | 19 Compiler; |
20 | 20 |
21 import '../memory_compiler.dart' show | 21 import '../memory_compiler.dart' show |
22 compilerFor; | 22 compilerFor; |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 "/language/setter_declaration2_negative_test.dart", | 166 "/language/setter_declaration2_negative_test.dart", |
167 "/language/source_self_negative_test.dart", | 167 "/language/source_self_negative_test.dart", |
168 "/language/syntax_test.dart", | 168 "/language/syntax_test.dart", |
169 "/language/type_variable_bounds2_test.dart", | 169 "/language/type_variable_bounds2_test.dart", |
170 "/language/type_variable_conflict2_test.dart", | 170 "/language/type_variable_conflict2_test.dart", |
171 "/language/type_variable_field_initializer_test.dart", | 171 "/language/type_variable_field_initializer_test.dart", |
172 "/language/type_variable_nested_test.dart", | 172 "/language/type_variable_nested_test.dart", |
173 "/language/vm/reflect_core_vm_test.dart", | 173 "/language/vm/reflect_core_vm_test.dart", |
174 "/language/vm/regress_14903_test.dart", | 174 "/language/vm/regress_14903_test.dart", |
175 ]); | 175 ]); |
OLD | NEW |