예제 #1
0
// ActionNode branches to QuestionNode or IfNode executers.
func (exec Execute) ActionNode(a *ast.ActionNode) {
	ast.DelegateActionNodeExecution(exec, a)
}
예제 #2
0
파일: draw.go 프로젝트: javachengwc/many-ql
// ActionNode branches to QuestionNode or IfNode nodes.
func (d Draw) ActionNode(a *ast.ActionNode) {
	ast.DelegateActionNodeExecution(d, a)
}
예제 #3
0
// ActionNode branches to QuestionNode or IfNode executers
func (tc Typechecker) ActionNode(a *ast.ActionNode) {
	ast.DelegateActionNodeExecution(tc, a)
}