Tagged Questions
6
votes
2answers
712 views
LALR vs LL parser
I've been using lex/yacc and now I'm trying to switch to ANTLR. The major concern is that ANTLR is an LL(*) parser unlike yacc which is LALR. I'm used to thinking bottom-up and I don't exactly know ...
1
vote
1answer
139 views
Can a ANTLR grammar file be modified to be used by PLY?
I want to make a python program that uses PLY to parse Javascript files, I din't found any sources of parsers that implement the ECMAScript, Javascript rules that use PLY.
The only thing I found was ...