Lex/Yacc for C#?

前端 未结 12 1856
隐瞒了意图╮
隐瞒了意图╮ 2020-11-29 06:21

Actually, maybe not full-blown Lex/Yacc. I\'m implementing a command-interpreter front-end to administer a webapp. I\'m looking for something that\'ll take a grammar definit

12条回答
  •  温柔的废话
    2020-11-29 06:27

    Just for the record, implementation of lexer and LALR parser in C# for C#:

    http://code.google.com/p/naive-language-tools/

    It should be similar in use to Lex/Yacc, however those tools (NLT) are not generators! Thus, forget about speed.

提交回复
热议问题