| Index: tests/standalone/debugger/nosuchmethod_debugger_test.dart
|
| diff --git a/tests/standalone/debugger/nosuchmethod_debugger_test.dart b/tests/standalone/debugger/nosuchmethod_debugger_test.dart
|
| index b52cfc1f256cbeb2557a33271ad5ffd21dae2fc4..10b6855bc5f0cd40d4a9d8468e3ce9d8b7ad66b6 100644
|
| --- a/tests/standalone/debugger/nosuchmethod_debugger_test.dart
|
| +++ b/tests/standalone/debugger/nosuchmethod_debugger_test.dart
|
| @@ -11,8 +11,8 @@
|
|
|
| import "debug_lib.dart";
|
|
|
| -main() {
|
| - if (RunScript(testScript)) return;
|
| +main(List<String> arguments) {
|
| + if (RunScript(testScript, arguments)) return;
|
| print("Hello from debuggee");
|
| var a = new A();
|
| for (var i = 0; i < 2; ++i) {
|
|
|