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

Unified Diff: tools/testing/dart/status_expression.dart

Issue 8400058: Fix type error in tools/testing/dart/status_expression.dart. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years, 2 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 side-by-side diff with in-line comments
Download patch
« tests/standalone/standalone.status ('K') | « tests/standalone/standalone.status ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/status_expression.dart
diff --git a/tools/testing/dart/status_expression.dart b/tools/testing/dart/status_expression.dart
index e6c561be5939b91b8c7e048cf814c6f213e4c4a3..6df885ede8e0d1f216be071b8503f3c950c2d73a 100644
--- a/tools/testing/dart/status_expression.dart
+++ b/tools/testing/dart/status_expression.dart
@@ -267,7 +267,7 @@ class ExpressionParser {
BooleanExpression parseBooleanAtomic() {
if (scanner.current == Token.LEFT_PAREN) {
scanner.advance();
- SetExpression value = parseBooleanExpression();
+ BooleanExpression value = parseBooleanExpression();
Expect.equals(scanner.current, Token.RIGHT_PAREN,
"Missing right parenthesis in expression");
scanner.advance();
« tests/standalone/standalone.status ('K') | « tests/standalone/standalone.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698