OLD | NEW |
1 // Copyright (c) 2015, the Fletch 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 // FletchDebuggerCommands=r,bt,t internal,bt,q | 5 // FletchDebuggerCommands=r,bt,t internal,bt,q |
6 | 6 |
7 // Tests that stack traces work in the debugger when there are | 7 // Tests that stack traces work in the debugger when there are |
8 // no visible frames (in that case 'bt' doesn't print anything). | 8 // no visible frames (in that case 'bt' doesn't print anything). |
9 // This program will hit a compile-time error when calling | 9 // This program will hit a compile-time error when calling |
10 // main in internal non-user code. | 10 // main in internal non-user code. |
11 void main(a, b, c) {} | 11 void main(a, b, c) {} |
OLD | NEW |