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

Unified Diff: tests/language/library12.dart

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 years, 8 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/library12.dart
diff --git a/tests/language/library12.dart b/tests/language/library12.dart
index 84c9a439e03483a119d7c6b0c3aab00909647190..1210077f9b104c41b0f0732857372ff75b0da4ee 100644
--- a/tests/language/library12.dart
+++ b/tests/language/library12.dart
@@ -6,14 +6,16 @@
library library12.dart;
import "library11.dart";
+
class Library12 {
Library12(this.fld);
Library12.other(fld, multiplier) {
- this.fld = fld*multiplier;
+ this.fld = fld * multiplier;
}
func() {
return 2;
}
+
var fld;
static static_func() {
var result = 0;
@@ -30,6 +32,7 @@ class Library12 {
Expect.equals(200, top_level_func11());
return 3;
}
+
static var static_fld = 4;
}

Powered by Google App Engine
This is Rietveld 408576698