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

Unified Diff: tests/language/prefix17_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/prefix17_test.dart
diff --git a/tests/language/prefix17_test.dart b/tests/language/prefix17_test.dart
index bf8ebb735e2d8edd89a2e1c793416ed041ba5b68..500911ddb7508a3680d47e3f67d41416bbaf3242 100644
--- a/tests/language/prefix17_test.dart
+++ b/tests/language/prefix17_test.dart
@@ -3,6 +3,7 @@
// BSD-style license that can be found in the LICENSE file.
library Prefix17Test.dart;
+
import "library12.dart" as lib12;
class LocalClass {
@@ -13,7 +14,7 @@ void main() {
LocalClass.static_fld = 42;
var lc1 = new lib12.Library12(5);
lib12.Library12 lc2 = new lib12.Library12(10);
- lib12.Library12 lc2m = new lib12.Library12.other(10,2);
+ lib12.Library12 lc2m = new lib12.Library12.other(10, 2);
lib12.Library12.static_fld = 43;
//print("${LocalClass.static_fld}, ${lc1.fld}, ${lc2.fld}, ${lc2m.fld}, ${lib12.Library12.static_fld}");
}

Powered by Google App Engine
This is Rietveld 408576698