| 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();
|
| }
|
|
|