| 28 | void setBreakpoint(const int line, const String &fileName, const bool shouldBeSet=true); |
| 29 | |
| 30 | struct PendingBreakpoint |
| 31 | { |
| 32 | PendingBreakpoint (int _line, String _fileName, bool _shouldBeSet) |
| 33 | : line(_line), fileName(_fileName), shouldBeSet(_shouldBeSet) {} |
| 34 | PendingBreakpoint() {} |
| 35 | int line; |
| 36 | String fileName; |
| 37 | bool shouldBeSet; |
| 38 | }; |
| 39 | |
| 40 | JUCE_LEAK_DETECTOR(CtrlrLuaDebugger) |
| 41 |