| | 7 | |
| | 8 | == User's Manual == |
| | 9 | |
| | 10 | === Setting break points === |
| | 11 | |
| | 12 | You can set a breakpoint in three ways: |
| | 13 | 1. By line number. |
| | 14 | 2. By line and column number. |
| | 15 | 3. By function name (not implemented yet). |
| | 16 | |
| | 17 | In each case you can specify which module to set the breakpoint in, however, if the module name is omitted then the debugger will choose a default module (XXX give a better explanation of what module is chosen by default). |
| | 18 | |
| | 19 | The syntax for setting breakpoints by line number is: |
| | 20 | |
| | 21 | {{{ |
| | 22 | :break MyModuleName 12 |
| | 23 | }}} |
| | 24 | |
| | 25 | This will activate the breakpoint which corresponds to the leftmost outermost expression which begins and ends on line 12 in the module called 'MyModuleName'. |
| | 26 | |
| | 27 | |
| | 28 | === Inspecting values === |
| | 29 | |
| | 30 | === Single stepping === |
| | 31 | |
| | 32 | === Continuing execution after a breakpoint === |
| | 33 | |
| | 34 | === Known problems in the debugger === |
| | 35 | |
| | 36 | === Wishlist of features (please add your's here) === |