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

Method handleStep

java/src/processing/mode/java/JavaEditor.java:1148–1161  ·  view source on GitHub ↗
(int modifiers)

Source from the content-addressed store, hash-verified

1146
1147
1148 public void handleStep(int modifiers) {
1149 if (modifiers == 0) {
1150 Messages.log("Invoked 'Step Over' menu item");
1151 debugger.stepOver();
1152
1153 } else if ((modifiers & ActionEvent.SHIFT_MASK) != 0) {
1154 Messages.log("Invoked 'Step Into' menu item");
1155 debugger.stepInto();
1156
1157 } else if ((modifiers & ActionEvent.ALT_MASK) != 0) {
1158 Messages.log("Invoked 'Step Out' menu item");
1159 debugger.stepOut();
1160 }
1161 }
1162
1163
1164 public void handleContinue() {

Callers 2

actionPerformedMethod · 0.95
actionPerformedMethod · 0.80

Calls 4

logMethod · 0.95
stepOverMethod · 0.80
stepIntoMethod · 0.80
stepOutMethod · 0.80

Tested by

no test coverage detected