使用 Bison 在一行中访问两个或多个令牌
我正在使用 bison 来实现一个简单的解析器。其中一行语法如下:
prefix_definition : PREFIX IDENTIFIER IDENTIFIER ABBR IDENTIFIER ';'
我不确定如何分别访问第一个、第二个和第三个IDENTIFIER
。我的 Flex 文件读取 IDENTIFIER
如下:
IDENTIFIER_REGEX (_|[A_Za-z])(_|[0-9A-Za-z])*
{IDENTIFIER_REGEX} { yylval.identifier=strdup(yytext); return IDENTIFIER; }
我不能简单地使用 yylval.identifier
。我尝试了 $2.identifier
左右,但它根本不起作用(而且无论如何它都不应该起作用)。有什么办法可以解决这个问题吗?
如果 bison/flex 不支持此类访问,我正在考虑使用 FIFO 队列。这是一个好的解决方案吗?
I am using bison to implement a simple parser. And one line of the syntax looks like:
prefix_definition : PREFIX IDENTIFIER IDENTIFIER ABBR IDENTIFIER ';'
I am unsure how to access the 1st, 2nd and 3rd IDENTIFIER
separately. My flex file reads the IDENTIFIER
like this:
IDENTIFIER_REGEX (_|[A_Za-z])(_|[0-9A-Za-z])*
{IDENTIFIER_REGEX} { yylval.identifier=strdup(yytext); return IDENTIFIER; }
I could not use simply yylval.identifier
. I tried $2.identifier
or so but it simply does not work(and it is not supposed to be work anyway). Is there any way of solving this problem?
I am considering to use a FIFO queue if the bison/flex does not support such access. Is this a good solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在声明令牌时指定令牌的类型(在 bison 文件中),就像处理非终结符一样(您使用
%type
),如下所示:(其中
identifier< /code> 是
%union
中声明的字段之一。然后$2
、$3
等将指向正确的东西,而不需要经过yylval
(即它们将是char *
在你的情况下)。You can specify the type of a token while declaring it (in the bison file) the same way you would for nonterminals (where you'd use
%type
) like so:(where
identifier
is one of the fields declared in the%union
). Then$2
,$3
and so on will point to the right thing, without needing to go throughyylval
(i.e. they will bechar *
s in your case).