MCPcopy Index your code
hub / github.com/badvision/jace / executeClicked

Method executeClicked

src/main/java/jace/ide/IdeController.java:219–229  ·  view source on GitHub ↗
(ActionEvent event)

Source from the content-addressed store, hash-verified

217 }
218
219 @FXML
220 void executeClicked(ActionEvent event) {
221 getCurrentProgram().ifPresent(program -> {
222 try {
223 program.execute();
224 updateStatusMessages(program.lastResult);
225 } catch (Exception e) {
226 e.printStackTrace();
227 }
228 });
229 }
230
231 @FXML
232 void testCompileClicked(ActionEvent event) {

Callers

nothing calls this directly

Calls 3

getCurrentProgramMethod · 0.95
updateStatusMessagesMethod · 0.95
executeMethod · 0.65

Tested by

no test coverage detected