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

Side by Side Diff: pkg/front_end/test/fasta/testing.json

Issue 2896003002: Fix incremental kernel generator. (Closed)
Patch Set: Created 3 years, 7 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) 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 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 "mode": "release", 156 "mode": "release",
157 "common": "--dart2js-batch --time -pcolor --report --failure-summary -ax64 -mrelease", 157 "common": "--dart2js-batch --time -pcolor --report --failure-summary -ax64 -mrelease",
158 "command-lines": [ 158 "command-lines": [
159 "--checked dart2js", 159 "--checked dart2js",
160 "-cdart2js -rd8 --exclude-suite=observatory_ui", 160 "-cdart2js -rd8 --exclude-suite=observatory_ui",
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": {
scheglov 2017/05/22 16:05:06 What does analyze do? Runs analyzer over the speci
ahe 2017/05/22 16:09:56 Both. To see the exact options passed to the analy
167 167
168 "options": "../../analysis_options.yaml", 168 "options": "../../analysis_options.yaml",
169 169
170 "uris": [ 170 "uris": [
171 "../../lib/src/fasta", 171 "../../lib/src/fasta",
172 "../../lib/src/fasta/builder", 172 "../../lib/src/fasta/builder",
173 "../../lib/src/fasta/dill", 173 "../../lib/src/fasta/dill",
174 "../../lib/src/fasta/kernel", 174 "../../lib/src/fasta/kernel",
175 "../../lib/src/fasta/parser", 175 "../../lib/src/fasta/parser",
176 "../../lib/src/fasta/scanner", 176 "../../lib/src/fasta/scanner",
177 "../../lib/src/fasta/source", 177 "../../lib/src/fasta/source",
178 "../../lib/src/fasta/testing", 178 "../../lib/src/fasta/testing",
179 "../../lib/src/fasta/util", 179 "../../lib/src/fasta/util",
180 "../../tool", 180 "../../tool",
181 "../../tool/_fasta", 181 "../../tool/_fasta",
182 "parser/parser_suite.dart", 182 "parser/parser_suite.dart",
183 "scanner/scanner_suite.dart", 183 "scanner/scanner_suite.dart",
184 "compile_test.dart", 184 "compile_test.dart",
185 "kompile_test.dart", 185 "kompile_test.dart",
186 "outline_test.dart", 186 "outline_test.dart",
187 "sdk_test.dart", 187 "sdk_test.dart",
188 "../incremental_kernel_generator_test.dart",
188 "../../../analyzer/lib/src/fasta", 189 "../../../analyzer/lib/src/fasta",
189 "../../../analyzer/lib/src/summary/fasta", 190 "../../../analyzer/lib/src/summary/fasta",
190 "../../../analyzer/lib/src/dart/analysis/file_state.dart", 191 "../../../analyzer/lib/src/dart/analysis/file_state.dart",
191 "../../../analyzer/test/generated/parser_fasta_test.dart", 192 "../../../analyzer/test/generated/parser_fasta_test.dart",
192 "../../../analyzer/tool/summary/mini_ast.dart", 193 "../../../analyzer/tool/summary/mini_ast.dart",
193 "../../../../utils/kernel-service/kernel-service.dart", 194 "../../../../utils/kernel-service/kernel-service.dart",
194 "../../../../tools/patch_sdk.dart" 195 "../../../../tools/patch_sdk.dart"
195 ], 196 ],
196 197
197 "exclude": [ 198 "exclude": [
198 "/third_party/pkg/", 199 "/third_party/pkg/",
199 "/third_party/pkg_tested/", 200 "/third_party/pkg_tested/",
200 "/pkg/analyzer/(?!.*/(fasta/|kernel/|(file_state|parser_fasta_test)\\.dart $))", 201 "/pkg/analyzer/(?!.*/(fasta/|kernel/|(file_state|parser_fasta_test)\\.dart $))",
201 "/pkg/js_ast/" 202 "/pkg/js_ast/"
202 ] 203 ]
203 } 204 }
204 } 205 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698