MCPcopy
hub / github.com/arduino/Arduino / run

Method run

app/src/processing/app/Editor.java:1634–1652  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1632 }
1633
1634 @Override
1635 public void run() {
1636 try {
1637 removeAllLineHighlights();
1638 sketchController.build(verbose, saveHex);
1639 statusNotice(tr("Done compiling."));
1640 } catch (PreferencesMapException e) {
1641 statusError(I18n.format(
1642 tr("Error while compiling: missing '{0}' configuration parameter"),
1643 e.getMessage()));
1644 } catch (Exception e) {
1645 status.unprogress();
1646 statusError(e);
1647 }
1648
1649 status.unprogress();
1650 toolbar.deactivateRun();
1651 avoidMultipleOperations = false;
1652 }
1653 }
1654
1655 public void removeAllLineHighlights() {

Callers

nothing calls this directly

Calls 9

formatMethod · 0.95
trMethod · 0.80
unprogressMethod · 0.80
deactivateRunMethod · 0.80
statusNoticeMethod · 0.65
statusErrorMethod · 0.65
buildMethod · 0.45
getMessageMethod · 0.45

Tested by

no test coverage detected