| OLD | NEW |
| 1 // Copyright (c) 2015, the Dartino project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, the Dartino project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE.md file. | 3 // BSD-style license that can be found in the LICENSE.md file. |
| 4 | 4 |
| 5 // Test that we get a meaningful breakpoint when breaking on a whitespace | 5 // Test that we get a meaningful breakpoint when breaking on a whitespace |
| 6 // column. | 6 // column. |
| 7 | 7 |
| 8 // DartinoDebuggerCommands=bf tests/debugger/empty_column_test.dart 12 1,r,c | 8 // DartinoDebuggerCommands=bf tests/debugger/empty_column_test.dart 12 1,r,c,q |
| 9 | 9 |
| 10 int foo() { | 10 int foo() { |
| 11 int x = 2; | 11 int x = 2; |
| 12 int y = 3; // break here. | 12 int y = 3; // break here. |
| 13 return x + y; | 13 return x + y; |
| 14 } | 14 } |
| 15 | 15 |
| 16 main() { | 16 main() { |
| 17 return foo() - 5; | 17 return foo() - 5; |
| 18 } | 18 } |
| OLD | NEW |