This is the VSCode plugin for EO. It provides semantic highlighting, parsing error checking and EO file icon for your .eo files. To install it, launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter:
You can also install it from its page at Visual Studio Marketplace. StructureTheis extension is written in TypeScript, was developed with Node 16 and has two main parts: the client and the server. Inside The code parser is generated with ANTLR4 using the latest version of the EO grammar located in this link. Publishing the extension is done with Rultor (see How to ContributeRead the code documentation which can be found here. Clone the repository. Install node modules with:
Download grammar file and generate ANTLR4 parser automatically with:
Make changes on a new branch. You can run an instance of VSCode with the extension running by hitting F5 in the code editor. After modifications, test your code with:
If you have modified any of the code documentation, generate new documentation files with:
Create a pull request. To avoid frustration, run:
before commiting. |