Antlr 获取子令牌 [英] Antlr get Sub-Tokens

查看:27
本文介绍了Antlr 获取子令牌的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

请原谅我的术语.

假设我有一些简化的语法:

Lets say I have this bit of simplified grammar:

// parser
expr : COMPARATIVE;

// lexer
WS : ( '\t' | ' ' | '\r' | '\n'| '\u000C' )+; 
COMPARATOR 
        : 'vs'
    | 'versus'
        ;
ITEM 
        : 'boy'
        | 'girl'
        ;
COMPARATIVE :ITEM WS* COMPARATOR WS* ITEM;

所以这当然会匹配 'boy vs girl''girl vs boy' 等.但我的问题是当我创建一个词法分析器时,即

So this will of course match 'boy vs girl' or 'girl vs boy', etc. But my question is that is when I create a Lexer, i.e.

CharStream stream = new ANTLRInputStream("boy vs girl");
SearchLexer lex = new SearchLexer(stream);
CommonTokenStream tokens = new CommonTokenStream(lex);
tokens.fill();
for(Token token : tokens) {
    System.out.print(token.getType() + " [" + token.getText() + "] ");
}

这会打印出如下内容:9 [男孩 vs 女孩],即它很好地匹配我的查询,但现在我希望能够执行类似的操作,获取当前标记的子标记.

This prints out something like this: 9 [boy vs girl], i.e. it matches my query fine, but now I want to be able to do something like, get the sub tokens of this current token.

我的直觉告诉我我需要使用树,但对于我的示例,我真的不知道如何在 Antlr4 中执行此操作.谢谢

My intuition tells me I need to use trees, but really don't know how to do this in Antlr4 for my example. Thanks

推荐答案

目前,COMPARATIVE 是一个词法分析器规则,这意味着它将尝试从与规则匹配的所有文本中生成单个标记.您应该改为制定解析器规则 comparative:

Currently, COMPARATIVE is a lexer rule which means it will try to make a single token from all the text that matches the rule. You should instead make a parser rule comparative:

comparative : ITEM WS* COMPARATOR WS* ITEM;

由于 COMPARATIVE 不再被视为单个令牌,您将获得 ITEMWS 的单独令牌>比较器.

Since COMPARATIVE will no longer be considered a single token, you'll instead get individual tokens for ITEM, WS, and COMPARATOR.

附注:

  1. 如果空格不重要,您可以像这样在解析器规则中隐藏它:

  1. If whitespace is not significant, you can hide it from the parser rules like this:

WS : ('\t' | ' ' | '\r' | '\n'| '\u000C')+ -> channel(HIDDEN);

然后您可以将您的 comparative 解析器规则简化为:

You can then simplify your comparative parser rule to simply be:

comparative : ITEM COMPARATOR ITEM;

  • 在 ANTLR 4 中,您可以使用新语法简化字符集:

  • In ANTLR 4, you can simplify character sets using a new syntax:

    WS : [ \t\r\n\u000C]+ -> channel(HIDDEN);
    

  • 这篇关于Antlr 获取子令牌的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

    查看全文
    登录 关闭
    扫码关注1秒登录
    发送“验证码”获取 | 15天全站免登陆