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

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

Issue 8539009: Fix type mismatch errors. Environments do not only contain strings. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years, 1 month 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 | « tests/standalone/src/StatusExpressionTest.dart ('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 aecfe577a59fb95debe599ef9f54ca4f6cfc8168..608a5c9762bc8feb3d4a65f0b2a75d936fdbb563 100644
--- a/tools/testing/dart/status_expression.dart
+++ b/tools/testing/dart/status_expression.dart
@@ -92,7 +92,7 @@ class TermVariable {
TermVariable(this.name);
- String termValue(environment) => environment[name];
+ termValue(environment) => environment[name];
Bill Hesse 2011/11/11 09:43:19 How about String termValue(environment) => environ
Mads Ager (google) 2011/11/11 09:46:30 Sounds good to me. I'll do that as part of my next
}
« no previous file with comments | « tests/standalone/src/StatusExpressionTest.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698