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

Unified Diff: tests/standalone/io/regress_7191_test.dart

Issue 17406010: Move getters from Options to Platform (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixed Dart_GetType Created 7 years, 6 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 | « tests/standalone/io/regress_7191_script.dart ('k') | tests/standalone/io/regress_7679_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/io/regress_7191_test.dart
diff --git a/tests/standalone/io/regress_7191_test.dart b/tests/standalone/io/regress_7191_test.dart
index 8c56fb356e7b0bd78ff4f42269c9fef89d9b7e1e..4e6abf1970713f2e74c693e4daaa1ffefcf87ef9 100644
--- a/tests/standalone/io/regress_7191_test.dart
+++ b/tests/standalone/io/regress_7191_test.dart
@@ -14,9 +14,8 @@ import 'dart:isolate';
main() {
var port = new ReceivePort();
- var options = new Options();
- var executable = options.executable;
- var scriptDir = new Path(options.script).directoryPath;
+ var executable = Platform.executable;
+ var scriptDir = new Path(Platform.script).directoryPath;
var script = scriptDir.append('regress_7191_script.dart').toNativePath();
Process.start(executable, [script]).then((process) {
process.stdin.add([0]);
« no previous file with comments | « tests/standalone/io/regress_7191_script.dart ('k') | tests/standalone/io/regress_7679_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698