I was using antlr 3.4 to write a parser grammar, like this:
var : VAR_LEFT_PART atom_var VAR_RIGHT_PART ;
atom_var : ID | VAR_LEFT_PART ID VAR_RIGHT_PART ;
VAR_LEFT_PART : '{{';
VAR_RIGHT_PART : '}}';
ID : ('a'..'z' | 'A'..'Z' | '_') ('a'..'z' | 'A'..'Z' | '0'..'9' | '_')* ;
INT : ('1'..'9')('0'..'9')* ;
NEWLINE:'\r'? '\n' ;
WS : (' '|'\t')+ { $channel = HIDDEN;} ;
when I test a case below:

the problem is that I the string "{{ {test} }}" is not right, but the parser recognized the ID a wrong token, what's the problem?