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

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

Issue 2981693002: Start copying resolution/inference data from front end to analyzer ASTs. (Closed)
Patch Set: Address code review comments. Created 3 years, 5 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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 ], 101 ],
102 "exclude": [ 102 "exclude": [
103 "/test/.*_test\\.dart$", 103 "/test/.*_test\\.dart$",
104 "/test/.*_suite\\.dart$", 104 "/test/.*_suite\\.dart$",
105 "/testcases/top_level_accessors_part\\.dart$", 105 "/testcases/top_level_accessors_part\\.dart$",
106 "/testcases/shaker/" 106 "/testcases/shaker/"
107 ] 107 ]
108 }, 108 },
109 109
110 { 110 {
111 "name": "ast_builder",
112 "kind": "Chain",
113 "source": "test/fasta/ast_builder_test.dart",
114 "path": "testcases/",
115 "status": "testcases/ast_builder.status",
116 "pattern": [
117 "\\.dart$"
118 ],
119 "exclude": [
120 "/test/.*_test\\.dart$",
121 "/test/.*_suite\\.dart$",
122 "/testcases/top_level_accessors_part\\.dart$",
123 "/testcases/shaker/"
124 ]
125 },
126
127 {
111 "name": "shaker", 128 "name": "shaker",
112 "kind": "Chain", 129 "kind": "Chain",
113 "source": "test/fasta/shaker_test.dart", 130 "source": "test/fasta/shaker_test.dart",
114 "path": "testcases/shaker/", 131 "path": "testcases/shaker/",
115 "status": "testcases/shaker.status", 132 "status": "testcases/shaker.status",
116 "pattern": [ 133 "pattern": [
117 "\\.dart$" 134 "\\.dart$"
118 ], 135 ],
119 "exclude": [ 136 "exclude": [
120 "/shaker/lib/lib.dart" 137 "/shaker/lib/lib.dart"
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 "package:front_end/", 228 "package:front_end/",
212 "package:kernel/" 229 "package:kernel/"
213 ] 230 ]
214 }, 231 },
215 232
216 "exclude": [ 233 "exclude": [
217 "^pkg/analysis_server/lib/src/analysis_server\\.dart" 234 "^pkg/analysis_server/lib/src/analysis_server\\.dart"
218 ] 235 ]
219 } 236 }
220 } 237 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698