Skip to content

Instantly share code, notes, and snippets.

@pmiddend
Created July 6, 2016 12:21
Show Gist options
  • Save pmiddend/3c35e60bdcf20219ab3dd57832df0052 to your computer and use it in GitHub Desktop.
Save pmiddend/3c35e60bdcf20219ab3dd57832df0052 to your computer and use it in GitHub Desktop.
lexer grammar TemplatesLexer;
TEXT : ~[$]+? ;
OPEN : '${' -> mode(INSIDE) ;
mode INSIDE;
CLOSE : '}' -> mode(DEFAULT_MODE) ;
NAME : ~[\}]+? ;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment