FastCompiledTask is like CompiledTask, but it skippes dynamic variables.
(call *Call)
| 37 | |
| 38 | // FastCompiledTask is like CompiledTask, but it skippes dynamic variables. |
| 39 | func (e *Executor) FastCompiledTask(call *Call) (*ast.Task, error) { |
| 40 | return e.compiledTask(call, false) |
| 41 | } |
| 42 | |
| 43 | func (e *Executor) CompiledTaskForTaskList(call *Call) (*ast.Task, error) { |
| 44 | origTask, err := e.GetTask(call) |
no test coverage detected