OLD | NEW |
1 { | 1 { |
2 "":"Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file", | 2 "":"Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file", |
3 "":"for details. All rights reserved. Use of this source code is governed by a", | 3 "":"for details. All rights reserved. Use of this source code is governed by a", |
4 "":"BSD-style license that can be found in the LICENSE.md file.", | 4 "":"BSD-style license that can be found in the LICENSE.md file.", |
5 | 5 |
6 "packages": "../../.packages", | 6 "packages": "../../.packages", |
7 | 7 |
8 "analyze": { | 8 "analyze": { |
9 "options": "analysis_options_strong.yaml", | 9 "options": "analysis_options_strong.yaml", |
10 | 10 |
11 "uris": [ | 11 "uris": [ |
12 ".", | 12 ".", |
13 "../../tests/compiler/dart2js/" | 13 "../../tests/compiler/dart2js/" |
14 ], | 14 ], |
15 | 15 |
16 "exclude": [ | 16 "exclude": [ |
17 "^pkg/compiler/lib/src/inferrer/builder\\.dart", | |
18 "^pkg/compiler/lib/src/inferrer/locals_handler\\.dart", | |
19 "^pkg/compiler/lib/src/inferrer/node_tracer\\.dart", | |
20 "^pkg/compiler/lib/src/inferrer/type_graph_dump\\.dart", | |
21 "^pkg/compiler/lib/src/inferrer/type_graph_nodes\\.dart", | |
22 | |
23 "^pkg/compiler/lib/src/js_backend/backend_serialization\\.dart", | |
24 "^pkg/compiler/lib/src/js_backend/constant_system_javascript\\.dart", | |
25 "^pkg/compiler/lib/src/js_backend/enqueuer\\.dart", | |
26 "^pkg/compiler/lib/src/js_backend/mirrors_analysis\\.dart", | |
27 "^pkg/compiler/lib/src/js_backend/mirrors_data\\.dart", | |
28 | |
29 "^pkg/compiler/lib/src/js_model/elements\\.dart", | |
30 | |
31 "^pkg/compiler/lib/src/native/ssa\\.dart", | |
32 | |
33 "^pkg/compiler/lib/src/resolution/constructors\\.dart", | |
34 "^pkg/compiler/lib/src/resolution/no_such_method_resolver\\.dart", | |
35 "^pkg/compiler/lib/src/resolution/type_resolver\\.dart", | |
36 | |
37 "^pkg/compiler/lib/src/serialization/constant_serialization\\.dart", | |
38 | |
39 "^pkg/compiler/lib/src/ssa/builder\\.dart", | |
40 "^pkg/compiler/lib/src/ssa/interceptor_simplifier\\.dart", | |
41 "^pkg/compiler/lib/src/ssa/locals_handler\\.dart", | |
42 "^pkg/compiler/lib/src/ssa/optimize\\.dart", | |
43 "^pkg/compiler/lib/src/ssa/type_builder\\.dart", | |
44 "^pkg/compiler/lib/src/ssa/value_range_analyzer\\.dart", | |
45 "^pkg/compiler/lib/src/ssa/variable_allocator\\.dart", | |
46 | |
47 "^pkg/compiler/lib/src/js_emitter/[^/]*\\.dart", | |
48 "^pkg/compiler/lib/src/js_emitter/full_emitter/[^/]*\\.dart", | |
49 "^pkg/compiler/lib/src/js_emitter/lazy_emitter/[^/]*\\.dart", | |
50 "^pkg/compiler/lib/src/js_emitter/startup_emitter/[^/]*\\.dart", | |
51 "^pkg/compiler/lib/src/types/[^/]*\\.dart", | |
52 "^pkg/compiler/lib/src/universe/[^/]*\\.dart", | |
53 | |
54 "^tests/compiler/dart2js/analyze_api_test\\.dart", | 17 "^tests/compiler/dart2js/analyze_api_test\\.dart", |
55 "^tests/compiler/dart2js/analyze_test_test\\.dart", | 18 "^tests/compiler/dart2js/analyze_test_test\\.dart", |
56 "^tests/compiler/dart2js/bad_output_io_test\\.dart", | 19 "^tests/compiler/dart2js/bad_output_io_test\\.dart", |
57 "^tests/compiler/dart2js/boolified_operator_test\\.dart", | 20 "^tests/compiler/dart2js/boolified_operator_test\\.dart", |
58 "^tests/compiler/dart2js/codegen_helper\\.dart", | 21 "^tests/compiler/dart2js/codegen_helper\\.dart", |
59 "^tests/compiler/dart2js/constant_expression_evaluate_test\\.dart", | 22 "^tests/compiler/dart2js/constant_expression_evaluate_test\\.dart", |
60 "^tests/compiler/dart2js/constant_expression_test\\.dart", | 23 "^tests/compiler/dart2js/constant_expression_test\\.dart", |
61 "^tests/compiler/dart2js/dart2js_batch2_test\\.dart", | 24 "^tests/compiler/dart2js/dart2js_batch2_test\\.dart", |
62 "^tests/compiler/dart2js/dart2js_batch_test\\.dart", | 25 "^tests/compiler/dart2js/dart2js_batch_test\\.dart", |
63 "^tests/compiler/dart2js/dart2js_resolver_test\\.dart", | 26 "^tests/compiler/dart2js/dart2js_resolver_test\\.dart", |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 "^tests/compiler/dart2js/source_map_name_test\\.dart", | 149 "^tests/compiler/dart2js/source_map_name_test\\.dart", |
187 "^tests/compiler/dart2js/source_mapping_test\\.dart", | 150 "^tests/compiler/dart2js/source_mapping_test\\.dart", |
188 "^tests/compiler/dart2js/type_combination_test\\.dart", | 151 "^tests/compiler/dart2js/type_combination_test\\.dart", |
189 "^tests/compiler/dart2js/type_inference7_test\\.dart", | 152 "^tests/compiler/dart2js/type_inference7_test\\.dart", |
190 "^tests/compiler/dart2js/type_test_helper\\.dart", | 153 "^tests/compiler/dart2js/type_test_helper\\.dart", |
191 | 154 |
192 "^tests/compiler/dart2js/path with spaces/.*" | 155 "^tests/compiler/dart2js/path with spaces/.*" |
193 ] | 156 ] |
194 } | 157 } |
195 } | 158 } |
OLD | NEW |