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

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

Issue 679153002: Add builder tag for Safari 6.2 slave. Update status files for Safari 6.2. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add issue number for html bugs. Created 6 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
« no previous file with comments | « tools/bots/compiler.py ('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 96396ea57da967948a96b403dda1ef36a42a64b2..5cd0a341e30dad4fdf007220343584b9463554dd 100644
--- a/tools/testing/dart/status_expression.dart
+++ b/tools/testing/dart/status_expression.dart
@@ -298,8 +298,8 @@ class ExpressionParser {
return value;
}
- // The only atomic booleans are of the form $variable == value or the
- // form $variable.
+ // The only atomic booleans are of the form $variable == value or
+ // of the form $variable.
if (scanner.current != Token.DOLLAR_SYMBOL) {
throw new FormatException(
"Expected \$ in expression, got ${scanner.current}");
@@ -317,7 +317,7 @@ class ExpressionParser {
scanner.advance();
if (!new RegExp(r"^\w+$").hasMatch(scanner.current)) {
throw new FormatException(
- "Expected identifier in expression, got ${scanner.current}");
+ "Expected value in expression, got ${scanner.current}");
}
TermConstant right = new TermConstant(scanner.current);
scanner.advance();
« no previous file with comments | « tools/bots/compiler.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698