CompiledTask returns a copy of a task, but replacing variables in almost all properties using the Go template package.
(call *Call)
| 32 | // CompiledTask returns a copy of a task, but replacing variables in almost all |
| 33 | // properties using the Go template package. |
| 34 | func (e *Executor) CompiledTask(call *Call) (*ast.Task, error) { |
| 35 | return e.compiledTask(call, true) |
| 36 | } |
| 37 | |
| 38 | // FastCompiledTask is like CompiledTask, but it skippes dynamic variables. |
| 39 | func (e *Executor) FastCompiledTask(call *Call) (*ast.Task, error) { |