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

Unified Diff: tests/language/getter_no_setter2_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
« no previous file with comments | « tests/language/generic_methods_type_expression_test.dart ('k') | tests/language/getter_no_setter_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/getter_no_setter2_test.dart
diff --git a/tests/language/getter_no_setter2_test.dart b/tests/language/getter_no_setter2_test.dart
index a798b7e9e9388aff9d303389d999656cd4d27c03..199b8e0c2286de3888663215651f4110d0f011df 100644
--- a/tests/language/getter_no_setter2_test.dart
+++ b/tests/language/getter_no_setter2_test.dart
@@ -35,13 +35,13 @@ class Example {
}
class Example1 {
- Example1(int i) { }
+ Example1(int i) {}
}
class Example2 extends Example1 {
static int _var = 1;
static int get nextVar => _var++;
- Example2() : super(nextVar) { } // No 'this' in scope.
+ Example2() : super(nextVar) {} // No 'this' in scope.
}
void main() {
« no previous file with comments | « tests/language/generic_methods_type_expression_test.dart ('k') | tests/language/getter_no_setter_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698