MCPcopy Create free account
hub / github.com/HaxeFoundation/hxcpp / HasBreakpoint

Method HasBreakpoint

src/hx/Debugger.cpp:836–844  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

834 }
835
836 bool HasBreakpoint(int number) const
837 {
838 for (int i = 0; i < mBreakpointCount; i++) {
839 if (number == mBreakpoints[i].number) {
840 return true;
841 }
842 }
843 return false;
844 }
845
846 int FindFileLineBreakpoint(StackFrame *inFrame)
847 {

Callers 1

DeleteMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected