du9826 2018-11-01 03: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 06: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.

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

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部