// recognize flags to narrow the gen set
goal(name="thrift", action=ThriftGen,
dependencies=["resolve-idl"]).install("gen").with_description("Generate code.")
goal(name="scrooge", action=ScroogeGen,
dependencies=["resolve-idl"]).install("gen")
goal(name="protoc", action=ProtobufGen,
dependencies=["resolve-idl"]).install("gen")
goal(name="antlr", action=AntlrGen,
dependencies=["resolve-idl"]).install("gen")
After Change
// TODO(John Sirois): gen attempted as the sole Goal should gen for all known gen types but
// recognize flags to narrow the gen set
goal(name="thrift", action=ThriftGen).install("gen").with_description("Generate code.")
goal(name="scrooge", action=ScroogeGen).install("gen")
goal(name="protoc", action=ProtobufGen).install("gen")
goal(name="antlr", action=AntlrGen).install("gen")
goal(