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

Unified Diff: tests/language/prefix14_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/prefix14_test.dart
diff --git a/tests/language/prefix14_test.dart b/tests/language/prefix14_test.dart
index a7cec0a1e7cad7f11f828df7c211db4d2f73d4cb..22e83d5e824cbb39110806238362e971ca4600bf 100644
--- a/tests/language/prefix14_test.dart
+++ b/tests/language/prefix14_test.dart
@@ -5,6 +5,7 @@
// Use qualified symbols at various places.
library Prefix14Test.dart;
+
import "package:expect/expect.dart";
import "library12.dart" as lib12;
@@ -16,16 +17,17 @@ class myInterface implements lib12.Library12Interface {
myfld.fld = (value1.fld + value2.fld + myfld.fld);
return myfld;
}
+
lib12.Library12 myfld;
}
-
class myClass extends lib12.Library12 {
myClass(int value) : super(value);
static lib12.Library12 func1() {
var i = new lib12.Library12(10);
return i;
}
+
static lib12.Library12 func2(lib12.Library12 param) {
return param;
}

Powered by Google App Engine
This is Rietveld 408576698