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

Side by Side Diff: sdk/lib/io/options.dart

Issue 12794002: Move Options to dart:io. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « sdk/lib/io/iolib_sources.gypi ('k') | tests/compiler/dart2js/deferred_load_graph_segmentation_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698