Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(218)

Unified Diff: corelib/src/options.dart

Issue 10890030: Move core and coreimpl from corelib/ to lib/core and lib/coreimpl. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebase. Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « corelib/src/object.dart ('k') | corelib/src/pattern.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: corelib/src/options.dart
diff --git a/corelib/src/options.dart b/corelib/src/options.dart
deleted file mode 100644
index 678de2fbd7565ecf5ba69b309f583e81b91f1b2c..0000000000000000000000000000000000000000
--- a/corelib/src/options.dart
+++ /dev/null
@@ -1,44 +0,0 @@
-// 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.
-
-// Dart core library.
-
-/**
- * The Options object allows accessing the arguments which have been passed to
- * the current isolate.
- */
-interface Options default RuntimeOptions {
- /**
- * A newly constructed Options object contains the arguments exactly as they
- * have been passed to the isolate.
- */
- Options();
-
- /**
- * Returns a list of arguments that have been passed to this isolate. Any
- * modifications to the list will be contained to the options object owning
- * this list.
- *
- * If the execution environment does not support [arguments] an empty list
- * is returned.
- */
- List<String> get arguments();
-
- /**
- * Returns the path of the executable used to run the script in this
- * isolate.
- *
- * If the execution environment does not support [executable] an empty
- * string is returned.
- */
- String get executable();
-
- /**
- * Returns the path of the script being run in this isolate.
- *
- * If the executable environment does not support [script] an empty
- * string is returned.
- */
- String get script();
-}
« no previous file with comments | « corelib/src/object.dart ('k') | corelib/src/pattern.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698