gwenn / lemon-rs

LALR(1) parser generator for Rust based on Lemon + SQL parser
The Unlicense
48 stars 10 forks source link

Would this be suitable for writing a SQLite language server #14

Closed bbkane closed 3 years ago

bbkane commented 3 years ago

Looks super neat!

gwenn commented 3 years ago

The main issue is #10. You should also take a look at nom-sql and sqlparser-rs. And I guess that for a language server, you need to recover / continue on error. But this feature is deactivated by default.

bbkane commented 3 years ago

Thanks!!