OLD | NEW |
1 { | 1 { |
2 "":"Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file", | 2 "":"Copyright (c) 2016, 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 "suites": [ | 8 "suites": [ |
9 | 9 |
10 { | 10 { |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
161 "-cdart2js -rd8 dart2js_extra dart2js_native" | 161 "-cdart2js -rd8 dart2js_extra dart2js_native" |
162 ] | 162 ] |
163 } | 163 } |
164 ], | 164 ], |
165 | 165 |
166 "analyze": { | 166 "analyze": { |
167 | 167 |
168 "options": "../../analysis_options.yaml", | 168 "options": "../../analysis_options.yaml", |
169 | 169 |
170 "uris": [ | 170 "uris": [ |
171 "../../lib/src/fasta", | 171 "../../lib", |
172 "../../lib/src/fasta/builder", | 172 "../../tool" |
173 "../../lib/src/fasta/dill", | |
174 "../../lib/src/fasta/kernel", | |
175 "../../lib/src/fasta/parser", | |
176 "../../lib/src/fasta/scanner", | |
177 "../../lib/src/fasta/source", | |
178 "../../lib/src/fasta/testing", | |
179 "../../lib/src/fasta/util", | |
180 "../../tool", | |
181 "../../tool/_fasta", | |
182 "parser/parser_suite.dart", | |
183 "scanner/scanner_suite.dart", | |
184 "compile_test.dart", | |
185 "kompile_test.dart", | |
186 "outline_test.dart", | |
187 "sdk_test.dart", | |
188 "../incremental_kernel_generator_test.dart", | |
189 "../../../analyzer/lib/src/fasta", | |
190 "../../../analyzer/lib/src/summary/fasta", | |
191 "../../../analyzer/lib/src/dart/analysis/file_state.dart", | |
192 "../../../analyzer/test/generated/parser_fasta_test.dart", | |
193 "../../../analyzer/tool/summary/mini_ast.dart", | |
194 "../../../../utils/kernel-service/kernel-service.dart", | |
195 "../../../../tools/patch_sdk.dart" | |
196 ], | 173 ], |
197 | 174 |
| 175 "note": "Tests are included via git grep below.", |
| 176 |
| 177 "git grep": { |
| 178 "pathspecs": [ "*.dart" ], |
| 179 "patterns": [ "package:front_end/" ] |
| 180 }, |
| 181 |
198 "exclude": [ | 182 "exclude": [ |
199 "/third_party/pkg/", | 183 "^pkg/analysis_server/lib/src/analysis_server\\.dart", |
200 "/third_party/pkg_tested/", | 184 "^pkg/compiler/lib/src/closure\\.dart", |
201 "/pkg/analyzer/(?!.*/(fasta/|kernel/|(file_state|parser_fasta_test)\\.dart
$))", | 185 "^pkg/compiler/lib/src/elements/elements\\.dart", |
202 "/pkg/js_ast/" | 186 "^pkg/compiler/lib/src/elements/modelx\\.dart", |
| 187 "^pkg/compiler/lib/src/js_backend/namer\\.dart", |
| 188 "^pkg/compiler/lib/src/resolution/members\\.dart", |
| 189 "^pkg/compiler/lib/src/resolution/resolution\\.dart", |
| 190 "^pkg/compiler/lib/src/resolution/resolution_strategy\\.dart", |
| 191 "^pkg/compiler/lib/src/serialization/equivalence\\.dart", |
| 192 "^pkg/compiler/lib/src/serialization/resolved_ast_serialization\\.dart" |
203 ] | 193 ] |
204 } | 194 } |
205 } | 195 } |
OLD | NEW |