MCPcopy Create free account
hub / github.com/RomanKubiak/ctrlr / PendingBreakpoint

Class PendingBreakpoint

Source/Lua/CtrlrLuaDebugger.h:30–38  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 1

setBreakpointMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected