You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Lexer: Jflex - a lexical analyzer generator for Java
Parser: Java Cup - a parser generator for Java
Target platform: JVM
Target language: ASM for code generator to JVM bytecode
Team Members
Anna Rylova
Aymen Daassi
Sofya Ivanova
Code Run
jflex lexical_spec.jflex - generates lexer by the name Yylex.java
java java_cup.MainDrawTree parser.cup - generates parser.java and sym.java
javac -classpath ".;asm-9.7.1.jar;asm-commons-9.7.1.jar;asm-tree-9.7.1.jar;$CLASSPATH" *.java - compiles the rest Java files (in Git Bash)
java -classpath ".;asm-9.7.1.jar;asm-commons-9.7.1.jar;asm-tree-9.7.1.jar;$CLASSPATH" Main input.txt - runs the Main file with the test input in input.txt