在 yacc 中使用 union 来表示结构
我对如何指定语法成员的类型有点困惑。我想将 prog 和 decls 声明为 ASTNode。我将使用这些成员添加到列表等。但是 yacc 无法将它们识别为 ASTNode,并且我收到类型错误。
这里我的 tIdent、tCharConst、tIntConstant 有一些类型,但是如何为我的成员提供 ASTNode 类型。
%union{
int ival;
char cval;
char *sval;
struct ASTNode *nval;
}
%token <sval> tIdent
%token <cval> tCharConst
%token <ival> tIntConst
prog : decls ;
decls : /* empty */
| decls decl
;
I'm a little confused about how to specify my grammar member's type. I want to declare prog and decls as ASTNode. I'm gonna use these members for adding to a list or etc. But yacc can't recognize them as an ASTNode and I get type errors.
Here my tIdent,tCharConst,tIntConstant have some types but, how to give ASTNode type to my members.
%union{
int ival;
char cval;
char *sval;
struct ASTNode *nval;
}
%token <sval> tIdent
%token <cval> tCharConst
%token <ival> tIntConst
prog : decls ;
decls : /* empty */
| decls decl
;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在
.y
文件的开头,您需要类似的内容来声明
ASTNode
的类型。或者您可以将其放入.h
文件中:等等。
At the very beginning of your
.y
file, you need something likein order to declare the type of
ASTNode
. Or you might instead put it in a.h
file:and so on.