11 Star 11 Fork 0

Gitee 极速下载/goa

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/goadesign/goa
克隆/下载
generated.go 941 Bytes
一键复制 编辑 原始数据 按行查看 历史
Nitin 提交于 2018-12-06 13:43 . [BREAKING] dsl package refactor (#1913)
package expr
import "goa.design/goa/eval"
type (
// GeneratedRoot records the generated result types and is a DSL root
// evaluated after Root.
GeneratedRoot []UserType
)
// EvalName is the name of the expression used by eval.
func (r *GeneratedRoot) EvalName() string {
return "generated result types"
}
// WalkSets returns the generated result types for evaluation.
func (r *GeneratedRoot) WalkSets(w eval.SetWalker) {
if r == nil {
return
}
set := make(eval.ExpressionSet, len(*r))
for i, t := range *r {
rt := t.(*ResultTypeExpr)
Root.ResultTypes = append(Root.ResultTypes, rt)
set[i] = rt
}
w(set)
}
// DependsOn ensures that Root executes first.
func (r *GeneratedRoot) DependsOn() []eval.Root {
return []eval.Root{Root}
}
// Packages returns the Go import path to this and the dsl packages.
func (r *GeneratedRoot) Packages() []string {
return []string{
"goa.design/goa/expr",
"goa.design/goa/dsl",
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors/goa.git
git@gitee.com:mirrors/goa.git
mirrors
goa
goa
v2.2.2

搜索帮助