The grammar contains several helper tokens. These are listed below
EOS <END OF STATEMENT> CRLF token or ';' token that indicates end of statement
eos : EOS+ One or more EOS tokens
;
garbage : (~EOS)+ All tokens until a EOS token (used to ignore "garbage" after NEXT, ENDIF etc.
; This is NOT supported in the Core dialect !