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

Unified Diff: tests/language/top_level_func_test.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/top_level_func_test.dart
diff --git a/tests/language/top_level_func_test.dart b/tests/language/top_level_func_test.dart
index 1871b90c781422e35e6273042200fe0bd3ec575c..eb438d78cef19467cd626ee92ab013412547966f 100644
--- a/tests/language/top_level_func_test.dart
+++ b/tests/language/top_level_func_test.dart
@@ -5,7 +5,6 @@
import "package:expect/expect.dart";
-
class TopLevelFuncTest {
static testMain() {
var z = [1, 10, 100, 1000];
@@ -42,11 +41,15 @@ int Sum(List<int> v) {
return s;
}
-get Window { return "win" "dow"; }
+get Window {
+ return "win" "dow";
+}
String rgb;
-void set Color(col) { rgb = "#$col"; }
+void set Color(col) {
+ rgb = "#$col";
+}
List<String> get digits {
return ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"];

Powered by Google App Engine
This is Rietveld 408576698