gpt4 book ai didi

java - 检查 Xtend validator 中的类型

转载 作者:行者123 更新时间:2023-12-01 11:00:35 25 4
gpt4 key购买 nike

我想检查我的 Xtend validator 中的功能类型。

Xtext 语法如下所示:

Element:
'Element' name=ID
'feature' feature=DOUBLE
'end' 'Element'
;

使用方法如下:

Element MyElement
feature 2.5
end Element

如果尝试对 feature 使用 INTEGER 值而不是 DOUBLE,编辑器会显示错误:

mismatched input '84900' expecting RULE_DOUBLE

我想覆盖该消息。因此,我在 validator 中创建了一个验证方法。在该方法中,我想检查功能的类型。这就是我正在尝试做的事情:

@Check
def checkFeatureType(Element element) {
if (element.feature instanceof Double) {
// shows error!
}
}

instanceof 检查显示以下错误:

Incompatible conditional operand types double or Double and Double or double

如何执行类型检查或者是否有更好的方法来覆盖上述标准消息?

最佳答案

要覆盖解析器生成的消息,您需要专门化 org.eclipse.xtext.parser.antlr.ISyntaxErrorMessageProvider 并在您语言的运行时模块中绑定(bind)您自己的实现。

关于java - 检查 Xtend validator 中的类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33362041/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com