Ejemplo n.º 1
0
// ActionNode branches to QuestionNode or IfNode executers.
func (exec Execute) ActionNode(a *ast.ActionNode) {
	ast.DelegateActionNodeExecution(exec, a)
}
Ejemplo n.º 2
0
// ActionNode branches to QuestionNode or IfNode nodes.
func (d Draw) ActionNode(a *ast.ActionNode) {
	ast.DelegateActionNodeExecution(d, a)
}
Ejemplo n.º 3
0
// ActionNode branches to QuestionNode or IfNode executers
func (tc Typechecker) ActionNode(a *ast.ActionNode) {
	ast.DelegateActionNodeExecution(tc, a)
}