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

Unified Diff: test/dart_codegen/expect/math/random.dart

Issue 963593002: Disable formatting and add new-lines to make tests faster. (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 10 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: test/dart_codegen/expect/math/random.dart
diff --git a/test/dart_codegen/expect/math/random.dart b/test/dart_codegen/expect/math/random.dart
index 00a05ba7d16fb80edf37e72ff7580dfe651bbd6c..23c2887302a36c1d268c3b8d043414139a511c06 100644
--- a/test/dart_codegen/expect/math/random.dart
+++ b/test/dart_codegen/expect/math/random.dart
@@ -1,9 +1,6 @@
part of dart.math;
-
-abstract class Random {
- factory Random([int seed]) =>
- (seed == null) ? const _JSRandom() : new _Random(seed);
- int nextInt(int max);
- double nextDouble();
- bool nextBool();
+ abstract class Random {factory Random([int seed]) => (seed == null) ? const _JSRandom() : new _Random(seed);
+ int nextInt(int max);
+ double nextDouble();
+ bool nextBool();
}

Powered by Google App Engine
This is Rietveld 408576698