OLD | NEW |
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 library status_expression; | 5 library status_expression; |
6 | 6 |
7 /** | 7 /** |
8 * Parse and evaluate expressions in a .status file for Dart and V8. | 8 * Parse and evaluate expressions in a .status file for Dart and V8. |
9 * There are set expressions and Boolean expressions in a .status file. | 9 * There are set expressions and Boolean expressions in a .status file. |
10 * The grammar is: | 10 * The grammar is: |
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
165 ? left.evaluate(environment) | 165 ? left.evaluate(environment) |
166 : new Set<String>(); | 166 : new Set<String>(); |
167 String toString() => "($left if $right)"; | 167 String toString() => "($left if $right)"; |
168 } | 168 } |
169 | 169 |
170 class SetConstant implements SetExpression { | 170 class SetConstant implements SetExpression { |
171 String value; | 171 String value; |
172 | 172 |
173 SetConstant(String v) : value = v.toLowerCase(); | 173 SetConstant(String v) : value = v.toLowerCase(); |
174 | 174 |
175 Set<String> evaluate(environment) => new Set<String>.from([value]); | 175 Set<String> evaluate(environment) => [value].toSet(); |
176 String toString() => value; | 176 String toString() => value; |
177 } | 177 } |
178 | 178 |
179 // An iterator that allows peeking at the current token. | 179 // An iterator that allows peeking at the current token. |
180 class Scanner { | 180 class Scanner { |
181 List<String> tokens; | 181 List<String> tokens; |
182 Iterator tokenIterator; | 182 Iterator tokenIterator; |
183 String current; | 183 String current; |
184 | 184 |
185 Scanner(this.tokens) { | 185 Scanner(this.tokens) { |
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
305 "Expected value in expression, got ${scanner.current}"); | 305 "Expected value in expression, got ${scanner.current}"); |
306 } | 306 } |
307 TermConstant right = new TermConstant(scanner.current); | 307 TermConstant right = new TermConstant(scanner.current); |
308 scanner.advance(); | 308 scanner.advance(); |
309 return new Comparison(left, right, negate); | 309 return new Comparison(left, right, negate); |
310 } else { | 310 } else { |
311 return new BooleanVariable(left); | 311 return new BooleanVariable(left); |
312 } | 312 } |
313 } | 313 } |
314 } | 314 } |
OLD | NEW |