A mini JavaScript parser using Lex & Yacc
- flex
- bison
- make
- gcc
# compile all sources
$ make
# or you can compile lexer separately
$ ./lex.sh
# NOTE: if you can't run .sh file, run this command first
$ chmod +x *.sh
$ ./javascript [FILE]
$ ./test.sh