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

Unified Diff: tests/language_strong/import_core_prefix_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_strong/import_core_prefix_test.dart
diff --git a/tests/language_strong/import_core_prefix_test.dart b/tests/language_strong/import_core_prefix_test.dart
index ec237ff5b2a0580d384dac51cdcfac972348ef55..0f3374b3b5a3976606d93ff7eff05bc4e8ea0b14 100644
--- a/tests/language_strong/import_core_prefix_test.dart
+++ b/tests/language_strong/import_core_prefix_test.dart
@@ -4,11 +4,11 @@
// Test explicit import of dart:core in the source code..
library ImportCorePrefixTest.dart;
+
import "package:expect/expect.dart";
import "dart:core" as mycore;
-class Object {
-}
+class Object {}
class Map {
Map(this._lat, this._long);
@@ -19,9 +19,8 @@ class Map {
var _long;
}
-
void main() {
- var test = new mycore.Map<mycore.int,mycore.String>();
+ var test = new mycore.Map<mycore.int, mycore.String>();
mycore.bool boolval = false;
mycore.int variable = 10;
mycore.num value = 10;

Powered by Google App Engine
This is Rietveld 408576698