Compiler for Smoola language
This is a compiler for Smoola language. (You can see Smoola Documentation)
In Phase 1, the lexer of Smoola is made in Smoola.g4 using Antlr
In Phase 2, the AST is constructed from lexical analysis and the symbol table is filled. Finally, it shows up semantic errors.
In Phase 3, the remaining errors are shown and type-checking is done.
In Phase 4, Java bytecode of the Smoola program will be generated.
Checking grammar of language.
writeln
type-checkingYou should at first generate Smoola.g4 grammer using Antlr. For more info about Antlr visit This Page.
You should run the whole Java project. For running that you can use MySmoola.java script. If you run this code, it runs the whole project easily.
After running the Java project, Java bytecode will be generated in the output
folder. Then it’s time to run the generated code.
First go to the output
directory in terminal. Then run
java -jar jasmin.jar *.j
and then it will create corresponding Java classes. Then you should run the program through executing your main class:
java <MainClass>