我的常规(不是 ocaml)yacc 文件中有以下内容:
wsorword : WS
{
strcpy($$, yytext);
}
| WORD
{
strcpy($$, yytext);
}
;
如何解决 ocamllex/ocamlyacc 中 WS 或 WORD 返回的词位?