MCPcopy Index your code
hub / github.com/processing/processing / hasBreakpoint

Method hasBreakpoint

java/src/processing/mode/java/Debugger.java:491–494  ·  view source on GitHub ↗

Check if there's a breakpoint on a particular line. @param line the line id @return true if a breakpoint is set on the given line, otherwise false

(LineID line)

Source from the content-addressed store, hash-verified

489 * @return true if a breakpoint is set on the given line, otherwise false
490 */
491 protected boolean hasBreakpoint(LineID line) {
492 LineBreakpoint bp = breakpointOnLine(line);
493 return bp != null;
494 }
495
496
497// /** Print a list of currently set breakpoints. */

Callers 2

setBreakpointMethod · 0.95
toggleBreakpointMethod · 0.95

Calls 1

breakpointOnLineMethod · 0.95

Tested by

no test coverage detected