我在 Eclipse 中使用 antlr-4.4-complete.jar 在 v4 语法中嵌入操作时遇到了问题。
当使用 4.4 jar 从蚂蚁生成识别器时,生成器会发出消息"规则的未知属性'文本'......">
该操作可以像 {System.out.println($rule.text(;} 一样简单
如果我使用 antlr-4.0-complete.jar,我的 ant 构建工作正常。
当我发现最近发布到该评论时,我的怀疑引起了Antlr 4 书籍勘误表:
#77534: When I run antlr4 on Simple.g4 I get the error message:
error(65): Simple.g4:18:52: unknown attribute text for rule stat in $stat.text
error(65): Simple.g4:20:54: unknown attribute text for rule stat in $stat.text
寻找一种方法来验证问题并改进工作流程,我想我会尝试使用 maven。
下面的片段报告"未知属性'文本'"消息,如果 antlr4-maven-plugin 版本设置为 4.3 如果 antlr4-maven-plugin 版本设置为 4.2,它将成功构建代码。
另一个问题:
.tokens 不是在目标包目录中生成的,而是在生成的源/antlr4 目录中创建的,但插件文档指出(在使用库目录下(:
任何语法的 .tokens 文件都是在与.java文件相同的输出目录结构中生成的。
和
该插件将...在输出目录 target/generated-sources/antlr4/org/foo/bar 中生成 .java 和 .tokens 文件。
我是否缺少配置参数?
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<source>6</source>
<target>6</target>
<showWarnings>true</showWarnings>
<showDeprecation>true</showDeprecation>
<compilerArguments>
<Xlint />
</compilerArguments>
</configuration>
</plugin>
<plugin>
<groupId>org.antlr</groupId>
<artifactId>antlr4-maven-plugin</artifactId>
<version>4.2</version>
<configuration>
<sourceDirectory>src/antlr4</sourceDirectory>
</configuration>
<executions>
<execution>
<goals>
<goal>antlr4</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.antlr</groupId>
<artifactId>antlr4-maven-plugin</artifactId>
<version>4.3</version>
</plugin>
<!--This plugin's configuration is used to store Eclipse m2e settings
only. It has no influence on the Maven build itself. -->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.antlr</groupId>
<artifactId>antlr4-maven-plugin</artifactId>
<versionRange>[4.0,)</versionRange>
<goals>
<goal>antlr4</goal>
</goals>
</pluginExecutionFilter>
<action>
<execute>
<runOnIncremental>true</runOnIncremental>
</execute>
</action>
</pluginExecution>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.codehaus.mojo</groupId>
<artifactId>
build-helper-maven-plugin
</artifactId>
<versionRange>[1.7,)</versionRange>
<goals>
<goal>add-source</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore></ignore>
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
来自 Antlr 4.3 发行说明,在"重大更改"下:
在嵌入的操作或语义谓词中,对封闭规则的引用不能再写为$ruleName。相反,请使用特殊符号$ctx来引用封闭规则。在此更改之前已从语法生成的解析器不受影响,但在使用 ANTLR 4.3 生成代码之前需要更新语法。此更改是更正 #571 的一部分所必需的。
从 antlr 4.3 开始,以 $rule.text 的形式访问文本属性的操作需要更改为 $ctx.getText((;
我想我必须做得更好,以保持我的工具。
我没有注意到我最近下载的 Antlr 4 示例中的这种变化。