ANTLR4在导入时找不到语法 [英] ANTLR4 does not find grammar on import

查看:297
本文介绍了ANTLR4在导入时找不到语法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试将ANTLR4语法拆分为多个文件,以便我可以更轻松地对其进行测试,我正在将gradle用作Java项目中的构建工具.

I am trying to split my ANTLR4 grammar in multiple files so i can test them more easily, i am using gradle as a build tool in a java project.

两个语法都可以正确地进行单独编译,但是当我将导入添加到主语法中时,我会得到下一个编译错误

Both grammar compile correctly by separate but when i add the import to my main grammar i get the next compilation error

错误(110):kanekotic/specflow/rider/SpecflowFeature.g4:3:7:找不到或加载语法SpecflowScenario

error(110): kanekotic/specflow/rider/SpecflowFeature.g4:3:7: can't find or load grammar SpecflowScenario

inherited语法如下:

grammar SpecflowScenario;

@header {
    package kanekotic.specflow.rider;
}

scenario
    : 'Scenario: ';

main语法如下:

grammar SpecflowFeature;

import SpecflowScenario;

@header {
    package kanekotic.specflow.rider;
}

file returns [List<String> values]
    @init { $values = new ArrayList<String>(); }
    : 'Feature: ' EOF;

我在做什么错?不允许吗?

What am i doing wrong? is this not allowed?

gradle.build看起来像:

plugins {
    id "org.jetbrains.intellij" version "0.1.10"
}

apply plugin: 'org.jetbrains.intellij'
apply plugin: 'java'
apply plugin: 'antlr'

sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8

intellij {
    version '143.2370.31'
    pluginName 'Specflow Rider'
}

group 'kanekotic.specflow.rider'
version '0.1'

repositories {
    mavenCentral()
    jcenter()
}

dependencies {
    antlr "org.antlr:antlr4:4.5"
    testCompile 'junit:junit:4.12'
    testCompile "org.mockito:mockito-core:2.+"
} 

所有开源代码都在下面的链接中: https://github.com/kanekotic/Specflow.Rider/tree/antlr4_multiple_grammar

all the code as it is open sourced is in this next link: https://github.com/kanekotic/Specflow.Rider/tree/antlr4_multiple_grammar

推荐答案

默认情况下,Antlr插件将src/main/antlr用作 lib 目录.由于要包含的语法文件位于kanekotic/specflow/rider中,因此请在gradle文件中使用以下代码来包含此位置:

The Antlr plugin uses src/main/antlr as lib directory by default. As the grammar file to include is in kanekotic/specflow/rider, use the following code in your gradle file to include this location:

generateGrammarSource {
    arguments << "-lib" << "src/main/antlr/kanekotic/specflow/rider"
}

另请参见 查看全文

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