Skip to content

Instantly share code, notes, and snippets.

grammar lexissue;
example : CONTAINER*;
dimensions : INT ('x'|'X') INT # setWindowDimensions;
CONTAINER: [a-z] [a-zA-Z]*;
INT: [0-9]+;