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

Unified Diff: tests/standalone/debugger/basic_debugger_test.dart

Issue 52573002: Remove uses of Options from pkg, samples, tests, and third_party directories. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Edit comment Created 7 years, 2 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 | « samples/build_dart_simple/build.dart ('k') | tests/standalone/debugger/breakpoint_resolved_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/debugger/basic_debugger_test.dart
diff --git a/tests/standalone/debugger/basic_debugger_test.dart b/tests/standalone/debugger/basic_debugger_test.dart
index 90bddc531be2461bd1f1fe60ba07545d3b0a1c5c..9dfded618b08e78bd5ae476c6806b13738863d7b 100644
--- a/tests/standalone/debugger/basic_debugger_test.dart
+++ b/tests/standalone/debugger/basic_debugger_test.dart
@@ -15,7 +15,7 @@ bar(x) {
var localStr = "foo";
int localInt = 1;
double localDouble = 1.1;
-
+
print(x);
}
@@ -26,8 +26,8 @@ foo(i) {
print(i);
}
-main() {
- if (RunScript(testScript)) return;
+main(List<String> arguments) {
+ if (RunScript(testScript, arguments)) return;
print("Hello from debuggee");
foo(42);
bam("bam");
@@ -52,4 +52,4 @@ var testScript = [
Resume(),
MatchFrames(["bar", "bam", "main"]),
Resume(),
-];
+];
« no previous file with comments | « samples/build_dart_simple/build.dart ('k') | tests/standalone/debugger/breakpoint_resolved_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698