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

Unified Diff: tests/language/static_parameter_test.dart

Issue 2901853002: Improve various old tests. (Closed)
Patch Set: Created 3 years, 7 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/ref_before_declaration_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/static_parameter_test.dart
diff --git a/tests/language/static_parameter_test.dart b/tests/language/static_parameter_test.dart
index 4dcc81cd5ae13abbab383d2b23c6cd7d72bcad63..724ccf7b2471ffce43f6775d56b1c5c3ad77b95e 100644
--- a/tests/language/static_parameter_test.dart
+++ b/tests/language/static_parameter_test.dart
@@ -4,7 +4,7 @@
foo(x
, static int y // //# 01: compile-time error
- , final static y // //# 02: compile-time error
+ , static final y // //# 02: compile-time error
, {static y} // //# 03: compile-time error
, [static y] // //# 04: compile-time error
) {}
@@ -12,14 +12,14 @@ foo(x
class C {
bar(x
, static int y // //# 05: compile-time error
- , final static y // //# 06: compile-time error
+ , static final y // //# 06: compile-time error
, {static y} // //# 07: compile-time error
, [static y] // //# 08: compile-time error
) {}
static baz(x
, static int y // //# 09: compile-time error
- , final static y // //# 10: compile-time error
+ , static final y // //# 10: compile-time error
, {static y} // //# 11: compile-time error
, [static y] // //# 12: compile-time error
) {}
« no previous file with comments | « tests/language/ref_before_declaration_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698