Antlr4解析数失败

时间:2017-07-04 10:32:32

标签: parsing antlr4

我正在尝试使用antlr4来解析数字(double和integer),但未能成功。希望有人可以帮助我。

我的测试代码是:

public class TestAntlr4 {

    @Test
    public void test() throws IOException {
        String input = "30";

        CharStream inputCharStream = new ANTLRInputStream(new StringReader(input));
        // create a lexer that feeds off of input CharStream
        TokenSource tokenSource = new GqlLexer(inputCharStream);
        // create a buffer of tokens pulled from the lexer
        TokenStream inputTokenStream = new CommonTokenStream(tokenSource);

        // create a parser that feeds off the tokens buffer
        TestAntlr4Parser parser = new TestAntlr4Parser(inputTokenStream);

        parser.removeErrorListeners(); // remove ConsoleErrorListener
        parser.addErrorListener(new VerboseListener());

        parser.getInterpreter().setPredictionMode(PredictionMode.LL_EXACT_AMBIG_DETECTION);

        NumberContext context = parser.number();

        System.out.println(context.toString());
    }
}

我的antlr4语法是:

grammar TestAntlr4 ;


number
    : INT_NUMBER
    | DOUBLE_NUMBER ;

DOUBLE_NUMBER
    : ('+'|'-')? INTEGER '.' INTEGER? ;

INT_NUMBER
    : ('+'|'-')? INTEGER ;

WS
    : [ \t\r\n]+ -> skip ; // skip spaces, tabs, newlines

fragment INTEGER
    : '0'
    | '1'..'9' ('0'..'9')* ;

fragment DIGIT
    : [0-9] ;

结果是:

rule stack: [number]
line 1:0 at [@0,0:1='30',<31>,1:0]: mismatched input '30' expecting {DOUBLE_NUMBER, INT_NUMBER}
[]

谁能告诉我这有什么问题?

1 个答案:

答案 0 :(得分:1)

语法似乎没问题。通过输入&#34; 30&#34;

,Lexs和解析对我来说很好
[@0,0:1='30',<INT_NUMBER>,1:0]
[@1,2:1='<EOF>',<EOF>,1:2]

还尝试了双击:

[@0,0:6='30.3343',<DOUBLE_NUMBER>,1:0]
[@1,7:6='<EOF>',<EOF>,1:7]

解析得很好。

现在,在我的环境中我使用的是C#目标,因此我的代码与您的代码略有不同。

使用访问者模式的我的(C#)代码:

                AntlrInputStream inputStream = new AntlrInputStream(stream);
                Grammar1Lexer lexer = new Grammar1Lexer(inputStream);
                CommonTokenStream tokenStream = new CommonTokenStream(lexer);
                Grammar1Parser parser = new Grammar1Parser(tokenStream);
                IParseTree tree = parser.number(); 
                Grammar1Visitor visitor = new Grammar1Visitor();
                visitor.Visit(tree);

编译并正常工作。

更新:

我注意到您的词法分析器和解析器的名称不同,您是否有简单的复制/粘贴错误?通常在生成类时,所有类都是根据您的语法名称统一命名的。