Are there any Parsing Expression Grammar (PEG) libraries for Javascript or PHP?

前端 未结 7 1843
野趣味
野趣味 2020-12-31 03:56

I find myself drawn to the Parsing Expression Grammar formalism for describing domain specific languages, but so far the implementation code I\'ve found has been written in

7条回答
  •  有刺的猬
    2020-12-31 04:22

    Have you looked at ANTLR? It produces lexer and parser code, handles abstract syntax trees, lets you insert code the grammar to be injected into the lexer/parser code, and its available for a variety of languages!

提交回复
热议问题