| Index: corelib/src/implementation/options.dart
|
| diff --git a/corelib/src/implementation/options.dart b/corelib/src/implementation/options.dart
|
| index 2d81762d01a5ebe6fa506da645a9cc94206109ac..b1f32ea13985e1d415cc3e51e8487eaa2cca6c55 100644
|
| --- a/corelib/src/implementation/options.dart
|
| +++ b/corelib/src/implementation/options.dart
|
| @@ -11,8 +11,15 @@ class RuntimeOptions implements Options {
|
| return _arguments;
|
| }
|
|
|
| + String get script() {
|
| + return _nativeScript;
|
| + }
|
| +
|
| List<String> _arguments = null;
|
|
|
| - // This arguments singleton is overriden by the embedder if applicable.
|
| + // This arguments singleton is written to by the embedder if applicable.
|
| static List<String> _nativeArguments = const [];
|
| +
|
| + // This script singleton is written to by the embedder if applicable.
|
| + static String _nativeScript = null;
|
| }
|
|
|