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

Unified Diff: tests/language_strong/static_parameter_test.dart

Issue 2774783002: Re-land "Format all multitests" (Closed)
Patch Set: Created 3 years, 9 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: tests/language_strong/static_parameter_test.dart
diff --git a/tests/language_strong/static_parameter_test.dart b/tests/language_strong/static_parameter_test.dart
index 437883f698bab5cabb9c982bd83c2fc450df2eec..4dcc81cd5ae13abbab383d2b23c6cd7d72bcad63 100644
--- a/tests/language_strong/static_parameter_test.dart
+++ b/tests/language_strong/static_parameter_test.dart
@@ -7,8 +7,7 @@ foo(x
, final static y // //# 02: compile-time error
, {static y} // //# 03: compile-time error
, [static y] // //# 04: compile-time error
- ) {
-}
+ ) {}
class C {
bar(x
@@ -16,16 +15,14 @@ class C {
, final static 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 y} // //# 11: compile-time error
, [static y] // //# 12: compile-time error
- ) {
- }
+ ) {}
}
main() {
« no previous file with comments | « tests/language_strong/static_getter_no_setter3_test.dart ('k') | tests/language_strong/static_setter_get_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698