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

Method handleRun

java/src/processing/mode/java/JavaEditor.java:1052–1066  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1050
1051
1052 public void handleRun() {
1053 if (isDebuggerEnabled()) {
1054 // Hitting Run while a sketch is running should restart the sketch
1055 // https://github.com/processing/processing/issues/3623
1056 if (debugger.isStarted()) {
1057 debugger.stopDebug();
1058 }
1059 // Don't start the sketch paused, continue until a breakpoint or error
1060 // https://github.com/processing/processing/issues/3096
1061 debugger.continueDebug();
1062
1063 } else {
1064 handleLaunch(false, false);
1065 }
1066 }
1067
1068
1069 public void handlePresent() {

Callers 1

actionPerformedMethod · 0.95

Calls 5

isDebuggerEnabledMethod · 0.95
handleLaunchMethod · 0.95
isStartedMethod · 0.80
stopDebugMethod · 0.80
continueDebugMethod · 0.80

Tested by

no test coverage detected