コード例 #1
0
ファイル: execute.go プロジェクト: javachengwc/many-ql
// 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
ファイル: execute.go プロジェクト: javachengwc/many-ql
// ActionNode branches to QuestionNode or IfNode executers
func (tc Typechecker) ActionNode(a *ast.ActionNode) {
	ast.DelegateActionNodeExecution(tc, a)
}