我有一个带有一些常量和变量声明的DSL,例如:
const c1 : Int
const c2 : Int
vars
v1 : Int
v2 : Int
b : Bool
但是我想要这样的东西:
const c1, c2 : Int
vars
v1, v2 : Int
b : Bool
我无法从语法中找到一种方法……解决方案是什么?
答案 0 :(得分:0)
您可以通过使用IDerivedStateComputer进行模型2模型转换来实现 参见http://xtextcasts.org/episodes/18-model-optimization为例