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

Unified Diff: tests/language/getter_no_setter_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/getter_no_setter2_test.dart ('k') | tests/language/getter_parameters_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/getter_no_setter_test.dart
diff --git a/tests/language/getter_no_setter_test.dart b/tests/language/getter_no_setter_test.dart
index 78535f741f7c3c3b4c4db265ab7e33adf528bab6..3218457dc60c2f33e57a1f215df9f634fd227765 100644
--- a/tests/language/getter_no_setter_test.dart
+++ b/tests/language/getter_no_setter_test.dart
@@ -12,7 +12,7 @@ class Example {
{
bool flag_exception = false;
try {
- nextVar = 1; // Equivalent to this.nextVar = 1.
+ nextVar = 1; // Equivalent to this.nextVar = 1.
} catch (excpt) {
flag_exception = true;
}
@@ -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/getter_no_setter2_test.dart ('k') | tests/language/getter_parameters_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698