使用 Bison 在一行中访问两个或多个令牌

发布于 2024-12-10 06:57:40 字数 565 浏览 0 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不即不离 2024-12-17 06:57:40

您可以在声明令牌时指定令牌的类型(在 bison 文件中),就像处理非终结符一样(您使用 %type),如下所示:(

%token <identifier> IDENTIFIER

其中 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:

%token <identifier> IDENTIFIER

(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 through yylval (i.e. they will be char *s in your case).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文