| Index: lib/core/options.dart
|
| diff --git a/lib/core/options.dart b/lib/core/options.dart
|
| index 1be8c12f148c8da2bf7f6f9bc9e7efd66d159413..0685d176f5b0cc8f5486485ed29863f4ac9254c2 100644
|
| --- a/lib/core/options.dart
|
| +++ b/lib/core/options.dart
|
| @@ -8,12 +8,12 @@
|
| * The Options object allows accessing the arguments which have been passed to
|
| * the current isolate.
|
| */
|
| -interface Options default RuntimeOptions {
|
| +abstract class Options {
|
| /**
|
| * A newly constructed Options object contains the arguments exactly as they
|
| * have been passed to the isolate.
|
| */
|
| - Options();
|
| + factory Options() => new RuntimeOptions();
|
|
|
| /**
|
| * Returns a list of arguments that have been passed to this isolate. Any
|
|
|