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

Unified Diff: tests/standalone/debugger/debug_lib.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
Index: tests/standalone/debugger/debug_lib.dart
diff --git a/tests/standalone/debugger/debug_lib.dart b/tests/standalone/debugger/debug_lib.dart
index 349de00825b17344970feea5368c4ad01a56b822..34500ba9ee930ef0e22a26553f6b60f4d3f298e0 100644
--- a/tests/standalone/debugger/debug_lib.dart
+++ b/tests/standalone/debugger/debug_lib.dart
@@ -609,11 +609,11 @@ bool RunScript(List script) {
// Port number 0 means debug target picks a free port dynamically.
var targetOpts = [ "--debug:0" ];
- targetOpts.add(options.script);
+ targetOpts.add(Platform.script);
targetOpts.add("--debuggee");
print('args: ${targetOpts.join(" ")}');
- Process.start(options.executable, targetOpts).then((Process process) {
+ Process.start(Platform.executable, targetOpts).then((Process process) {
print("Debug target process started, pid ${process.pid}.");
process.stdin.close();
var debugger = new Debugger(process, new DebugScript(script));
« no previous file with comments | « tests/standalone/debugger/breakpoint_resolved_test.dart ('k') | tests/standalone/debugger/tostring_throws_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698