1

これは StringTemplate4 から変更されたテストです。エラーが発生します。

#!/usr/bin/env groovy

@Grab(group="org.antlr", module="ST4", version="4.0.7")
import org.stringtemplate.v4.ST
import org.stringtemplate.v4.STGroup
import org.stringtemplate.v4.STGroupString

class Decl {
  def name
  def type
  Decl(name, type) {
    this.name = name
    this.type = type
  }
}
String templates =
  "file(variables) ::= <<\n" +
  "<variables:{ v | <v:decl(v)>}; separator=\"\\n\">\n"+
  ">>\n"+
  "decl(v) ::= \"<v.type> <v.name> = 0;\"";
STGroup group = new STGroupString(templates);
ST f = group.getInstanceOf("file");
f.addAggr("variables.{decl}", ["a", "int"] as Decl);
f.addAggr("variables.{decl}", ["b", "int"] as Decl);
println(f.render())

これはエラーです:

context [/file /_sub1] 1:20 passed 2 arg(s) to template /decl with 1 declared arg(s)
context [/file /_sub1] 1:20 passed 2 arg(s) to template /decl with 1 declared arg(s)

「v」がどこかで展開されているようですが、よくわからないのでエラーの意味がわかりません。このコードを書く正しい方法は何ですか?

4

1 に答える 1