kit

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

lex_keyword_unmatched.ebnf (95B)


      1 %lex {
      2   IDENT = [A-Za-z_][A-Za-z0-9_]*;
      3   %keywords IDENT { PLUS = "+"; }
      4 }
      5 p = PLUS | IDENT;