(ActionEvent event)
| 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) { |
nothing calls this directly
no test coverage detected