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

Unified Diff: pkg/analyzer/test/generated/ast_test.dart

Issue 1289283004: Initial steps toward adding strong mode to the new task model (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 4 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
Index: pkg/analyzer/test/generated/ast_test.dart
diff --git a/pkg/analyzer/test/generated/ast_test.dart b/pkg/analyzer/test/generated/ast_test.dart
index 3da17e2cef8c3678645787debd57749151683cff..4f8142aae83437d3edf98e8d07282f979b33b00d 100644
--- a/pkg/analyzer/test/generated/ast_test.dart
+++ b/pkg/analyzer/test/generated/ast_test.dart
@@ -2462,7 +2462,7 @@ class ToSourceVisitorTest extends EngineTestCase {
void test_visitForEachStatement_declared() {
_assertSource(
- "for (a in b) {}",
+ "for (var a in b) {}",
AstFactory.forEachStatement(AstFactory.declaredIdentifier3("a"),
AstFactory.identifier3("b"), AstFactory.block()));
}

Powered by Google App Engine
This is Rietveld 408576698