Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(166)

Side by Side Diff: pkg/compiler/testing_strong.json

Issue 2934333002: More dart2js strong mode cleanup. (Closed)
Patch Set: Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/deferred_load\\.dart", 17 "^pkg/compiler/lib/src/deferred_load\\.dart",
18 "^pkg/compiler/lib/src/elements/resolution_types\\.dart",
18 "^pkg/compiler/lib/src/enqueue\\.dart", 19 "^pkg/compiler/lib/src/enqueue\\.dart",
20 "^pkg/compiler/lib/src/inferrer/builder\\.dart",
21 "^pkg/compiler/lib/src/inferrer/locals_handler\\.dart",
22 "^pkg/compiler/lib/src/inferrer/node_tracer\\.dart",
23 "^pkg/compiler/lib/src/inferrer/type_graph_dump\\.dart",
24 "^pkg/compiler/lib/src/inferrer/type_graph_nodes\\.dart",
19 "^pkg/compiler/lib/src/js_backend/backend_serialization\\.dart", 25 "^pkg/compiler/lib/src/js_backend/backend_serialization\\.dart",
20 "^pkg/compiler/lib/src/js_backend/constant_system_javascript\\.dart", 26 "^pkg/compiler/lib/src/js_backend/constant_system_javascript\\.dart",
21 "^pkg/compiler/lib/src/js_backend/enqueuer\\.dart", 27 "^pkg/compiler/lib/src/js_backend/enqueuer\\.dart",
22 "^pkg/compiler/lib/src/js_backend/mirrors_analysis\\.dart", 28 "^pkg/compiler/lib/src/js_backend/mirrors_analysis\\.dart",
23 "^pkg/compiler/lib/src/js_backend/mirrors_data\\.dart", 29 "^pkg/compiler/lib/src/js_backend/mirrors_data\\.dart",
24 "^pkg/compiler/lib/src/js_model/elements\\.dart", 30 "^pkg/compiler/lib/src/js_model/elements\\.dart",
25 "^pkg/compiler/lib/src/kernel/kernel_visitor\\.dart",
26 "^pkg/compiler/lib/src/native/ssa\\.dart", 31 "^pkg/compiler/lib/src/native/ssa\\.dart",
27 "^pkg/compiler/lib/src/platform_configuration\\.dart", 32 "^pkg/compiler/lib/src/platform_configuration\\.dart",
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 "^pkg/compiler/lib/src/serialization/constant_serialization\\.dart",
37 "^pkg/compiler/lib/src/ssa/builder\\.dart",
38 "^pkg/compiler/lib/src/ssa/interceptor_simplifier\\.dart",
39 "^pkg/compiler/lib/src/ssa/locals_handler\\.dart",
40 "^pkg/compiler/lib/src/ssa/optimize\\.dart",
41 "^pkg/compiler/lib/src/ssa/type_builder\\.dart",
42 "^pkg/compiler/lib/src/ssa/value_range_analyzer\\.dart",
43 "^pkg/compiler/lib/src/ssa/variable_allocator\\.dart",
28 "^pkg/compiler/lib/src/typechecker\\.dart", 44 "^pkg/compiler/lib/src/typechecker\\.dart",
29 45
30 "^pkg/compiler/lib/src/elements/[^/]*\\.dart",
31 "^pkg/compiler/lib/src/inferrer/[^/]*\\.dart",
32 "^pkg/compiler/lib/src/js_emitter/[^/]*\\.dart", 46 "^pkg/compiler/lib/src/js_emitter/[^/]*\\.dart",
33 "^pkg/compiler/lib/src/js_emitter/full_emitter/[^/]*\\.dart", 47 "^pkg/compiler/lib/src/js_emitter/full_emitter/[^/]*\\.dart",
34 "^pkg/compiler/lib/src/js_emitter/lazy_emitter/[^/]*\\.dart", 48 "^pkg/compiler/lib/src/js_emitter/lazy_emitter/[^/]*\\.dart",
35 "^pkg/compiler/lib/src/js_emitter/startup_emitter/[^/]*\\.dart", 49 "^pkg/compiler/lib/src/js_emitter/startup_emitter/[^/]*\\.dart",
36 "^pkg/compiler/lib/src/resolution/[^/]*\\.dart",
37 "^pkg/compiler/lib/src/serialization/[^/]*\\.dart",
38 "^pkg/compiler/lib/src/ssa/[^/]*\\.dart",
39 "^pkg/compiler/lib/src/types/[^/]*\\.dart", 50 "^pkg/compiler/lib/src/types/[^/]*\\.dart",
40 "^pkg/compiler/lib/src/universe/[^/]*\\.dart", 51 "^pkg/compiler/lib/src/universe/[^/]*\\.dart",
41 52
42 "^tests/compiler/dart2js/analyze_api_test\\.dart", 53 "^tests/compiler/dart2js/analyze_api_test\\.dart",
43 "^tests/compiler/dart2js/analyze_test_test\\.dart", 54 "^tests/compiler/dart2js/analyze_test_test\\.dart",
44 "^tests/compiler/dart2js/bad_output_io_test\\.dart", 55 "^tests/compiler/dart2js/bad_output_io_test\\.dart",
45 "^tests/compiler/dart2js/boolified_operator_test\\.dart", 56 "^tests/compiler/dart2js/boolified_operator_test\\.dart",
46 "^tests/compiler/dart2js/codegen_helper\\.dart", 57 "^tests/compiler/dart2js/codegen_helper\\.dart",
47 "^tests/compiler/dart2js/constant_expression_evaluate_test\\.dart", 58 "^tests/compiler/dart2js/constant_expression_evaluate_test\\.dart",
48 "^tests/compiler/dart2js/constant_expression_test\\.dart", 59 "^tests/compiler/dart2js/constant_expression_test\\.dart",
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 "^tests/compiler/dart2js/source_map_name_test\\.dart", 193 "^tests/compiler/dart2js/source_map_name_test\\.dart",
183 "^tests/compiler/dart2js/source_mapping_test\\.dart", 194 "^tests/compiler/dart2js/source_mapping_test\\.dart",
184 "^tests/compiler/dart2js/type_combination_test\\.dart", 195 "^tests/compiler/dart2js/type_combination_test\\.dart",
185 "^tests/compiler/dart2js/type_inference7_test\\.dart", 196 "^tests/compiler/dart2js/type_inference7_test\\.dart",
186 "^tests/compiler/dart2js/type_test_helper\\.dart", 197 "^tests/compiler/dart2js/type_test_helper\\.dart",
187 198
188 "^tests/compiler/dart2js/path with spaces/.*" 199 "^tests/compiler/dart2js/path with spaces/.*"
189 ] 200 ]
190 } 201 }
191 } 202 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698