mirror of
https://github.com/processing/processing4.git
synced 2026-01-24 08:51:07 +01:00
I started cleaning up some of `Base`'s startup sequence for clarity of what is being started when. Nowhere near completion and I think a lot of this class will need to be refactored in the future. Also removed some of the timing measurement comments Added some comments to the Processing CLI class
Processing Java Mode
This the Java Mode in Processing. It compiles your sketches and runs them. It is the primary mode of Processing.
Folders
applicationassets for exporting applications within the modegeneratedgenerated antlr code for the mode, should be moved to a properantlrplugin within gradlelibrarieslibraries that are available within the modelspgradle build system for the language server protocol, in the future we should decouple the lsp from the java mode and pde and move all relevant code here. For now it can be found insrc/.../lspmodelegacy files forAntpreprocessorthe preprocessor for the mode, same deal as with the lsp, although the decoupling has mostly been donesrcthe main source code for the modetesttests for the modethemeassets for the mode, related to autocomplete and syntax highlighting
Future plans
- Decouple the
lspandpreprocessorfrom the mode and move them to their own repositories - Move the
antlrcode to a proper plugin within gradle - Create a gradle plugin to convert
.pdefile to.javafiles - Create a gradle based version of Java mode.