kit

kit
git clone https://git.ryansepassi.com/git/kit.git
Log | Files | Refs | README

lex_dup_name.ebnf (131B)


      1 // A lexer must be fully specified in one block; a repeated name is an error.
      2 %lex foo { A = "a"; }
      3 %lex foo { B = "b"; }
      4 s = A B;