| 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(),
|
| -];
|
| +];
|
|
|