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)
微信扫一扫
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)
相关推荐