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

前端 未结 7 1845
野趣味
野趣味 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:38

    Language.js:

    Language.js is an open source experimental new parser based on PEG (Parsing Expression Grammar), with the special addition of the "naughty OR" operator to handle errors in a unique new way. It makes use of memoization to achieve linear time parsing speed

    0 讨论(0)
提交回复
热议问题