这是 [filename].output state 94 的摘录
32 expr: expr . opt_at_type '.' TYPEID '(' opt_expr_list ')'
39 | expr . '+' expr
40 | expr . '-' expr
41 | expr . '*' expr
42 | expr . '/' expr
42 | expr '/' expr .
44 | expr . '<' expr
45 | expr . LE expr
46 | expr . '=' expr
'@' shift, and go to state 73
'.' reduce using rule 23 (opt_at_type)
'.' [reduce using rule 42 (expr)]
$default reduce using rule 42 (expr)
opt_at_type go to state 74
opt_at_type 定义为:
opt_at_type:
{ $$ = idtable.add_string("SELF_TYPE"); }
| '@' TYPEID
{ $$ = $2; }
;
你能告诉我为什么会这样吗?