bleibig / rust-grammar

LALR grammar and parser for Rust using flex and bison
MIT License
47 stars 15 forks source link

Misc LALR enhancements #13

Closed ptgreen closed 10 years ago

ptgreen commented 10 years ago

With these changes, the LALR parser accepts 54% (826/1532) of the files in the main rust src/test/run-pass/*.rs testsuite. The LL(1) parser accepts 13% of the same files (198/1532).

I've added another test driver script for tracking and comparing.

bleibig commented 10 years ago

Awesome work as always, thanks!