du9826 2018-11-01 11:44
浏览 168
已采纳

Go中的AntLR4:无效的类型声明:侦听器

I generated Parser for the Go Language from Antlr4 grammar.

Grammar is here: https://raw.githubusercontent.com/antlr/grammars-v4/master/solidity/Solidity.g4

I generate parser as follows: java -jar $PWD/antlr-4.7.1-complete.jar -Dlanguage=Go -o parser syntax/Solidity.g4

The generated solidity_parser.go file has the following error whereever listener.(SolidityListener) shows up:

Invalid type assertion: listener.(SolidityListener) (non-interface type antlr.ParseTreeListener on left)

Code snippet: func (s *SourceUnitContext) EnterRule(listener antlr.ParseTreeListener) { if listenerT, ok := listener.(SolidityListener); ok { // <-- here is the error listenerT.EnterSourceUnit(s) } }

What could be the problem?

  • 写回答

1条回答 默认 最新

  • douyuai8994 2019-07-02 14:59
    关注

    can not find declaration to go

    I met the same problem. The reason is go cannot find the interface definition, just run go get github.com/antlr/antlr4/runtime/Go/antlr would solve the problem.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?