| 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..20d0a219ef734215c2acbff889744935369ecc37 100644
|
| --- a/test/dart_codegen/expect/math/random.dart
|
| +++ b/test/dart_codegen/expect/math/random.dart
|
| @@ -1,8 +1,7 @@
|
| part of dart.math;
|
|
|
| abstract class Random {
|
| - factory Random([int seed]) =>
|
| - (seed == null) ? const _JSRandom() : new _Random(seed);
|
| + external factory Random([int seed]);
|
| int nextInt(int max);
|
| double nextDouble();
|
| bool nextBool();
|
|
|