Chromium Code Reviews| Index: corelib/src/options.dart |
| diff --git a/corelib/src/options.dart b/corelib/src/options.dart |
| index fea63d07fdb412395fcd8d8e99cdc1a32ed6225d..4b2994ddfd2570167d305532dffa851d2fd55f91 100644 |
| --- a/corelib/src/options.dart |
| +++ b/corelib/src/options.dart |
| @@ -1,4 +1,4 @@ |
| -// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| +// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| // for details. All rights reserved. Use of this source code is governed by a |
| // BSD-style license that can be found in the LICENSE file. |
| @@ -23,6 +23,12 @@ interface Options default RuntimeOptions { |
| List<String> get arguments(); |
| /** |
| + * Returns the path of the executable used to run the script in this |
| + * isolate. |
|
Ivan Posva
2012/05/07 17:40:36
Please comment what happens if the execution envir
Mads Ager (google)
2012/05/08 06:39:04
Done.
Anders Johnsen
2012/05/09 07:16:43
Any change we could change this to always be absol
Mads Ager (google)
2012/05/09 07:38:09
This is in corelib so we shouldn't have dependenci
|
| + */ |
| + String get executable(); |
| + |
| + /** |
| * Returns the path of the script being run in this isolate. |
| */ |
| String get script(); |