kit

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

prop.ebnf (173B)


      1 // Unicode property escapes (\p{...}) must be rejected when built with
      2 // GRAMGEN_NO_UNICODE (byte mode has no property tables).
      3 %lex {
      4   LETTER = \p{L};
      5 }
      6 
      7 start = LETTER;