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

Unified Diff: tests/language/closure_in_field_initializer_test.dart

Issue 2997723002: Revert "Migrating a block of dart 2:" (Closed)
Patch Set: Created 3 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
« no previous file with comments | « tests/language/closure_in_constructor_test.dart ('k') | tests/language/closure_in_initializer2_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/closure_in_field_initializer_test.dart
diff --git a/tests/language_2/closure_in_field_initializer_test.dart b/tests/language/closure_in_field_initializer_test.dart
similarity index 87%
copy from tests/language_2/closure_in_field_initializer_test.dart
copy to tests/language/closure_in_field_initializer_test.dart
index 026c712f46b8eaa2ebcab1e3c6d5aa49a4154dda..b1931801311e6b4c0c4095950f90a04ccafe19e0 100644
--- a/tests/language_2/closure_in_field_initializer_test.dart
+++ b/tests/language/closure_in_field_initializer_test.dart
@@ -5,7 +5,7 @@
import "package:expect/expect.dart";
class Foo {
- var closures = {'a': (int x, int y) => x + y};
+ var closures = {'a': (x, y) => x + y};
}
main() {
« no previous file with comments | « tests/language/closure_in_constructor_test.dart ('k') | tests/language/closure_in_initializer2_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698