| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 part of dart.core; | 5 part of dart.io; |
| 6 | 6 |
| 7 /** | 7 /** |
| 8 * The Options object allows accessing the arguments which have been passed to | 8 * The Options object allows accessing the arguments which have been passed to |
| 9 * the current isolate. | 9 * the current isolate. |
| 10 */ | 10 */ |
| 11 abstract class Options { | 11 abstract class Options { |
| 12 /** | 12 /** |
| 13 * A newly constructed Options object contains the arguments exactly as they | 13 * A newly constructed Options object contains the arguments exactly as they |
| 14 * have been passed to the isolate. | 14 * have been passed to the isolate. |
| 15 */ | 15 */ |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 | 64 |
| 65 // This arguments singleton is written to by the embedder if applicable. | 65 // This arguments singleton is written to by the embedder if applicable. |
| 66 static List<String> _nativeArguments = const []; | 66 static List<String> _nativeArguments = const []; |
| 67 | 67 |
| 68 // This executable singleton is written to by the embedder if applicable. | 68 // This executable singleton is written to by the embedder if applicable. |
| 69 static String _nativeExecutable = ''; | 69 static String _nativeExecutable = ''; |
| 70 | 70 |
| 71 // This script singleton is written to by the embedder if applicable. | 71 // This script singleton is written to by the embedder if applicable. |
| 72 static String _nativeScript = ''; | 72 static String _nativeScript = ''; |
| 73 } | 73 } |
| OLD | NEW |