QUT-IFN660-ECMAScript / Native-ECMAScript

4 stars 3 forks source link

Identify shift/reduce conflicts #56

Closed AnthonyGough closed 8 years ago

AnthonyGough commented 8 years ago

Try to address some of the reduce/reduce and shift/reduce conflicts present in the grammar. Generate bison output to enable the state to be more easily visualised bison --verbose grammar.y

Will produce grammar.output to show unused/useless tokens, nonterminals but more imp the automaton state transitions - so currently the shift reduce conflicts can visualise the states which have conflicts e.g.

Sample grammar.output in branch anthony or generate yourself - added to .gitignore

hscells commented 8 years ago

See #65