void TypeDecl() : {
Token t;
}
{
<VOID>
|
t=<TERM> { jjtThis.name = t.image; } ("[]")?}
}








refer to current token as "t" and current AST node as "jjtThis"
the text of the current token (t.image)