(t *ast.Task, call *Call)
| 38 | } |
| 39 | |
| 40 | func (c *Compiler) GetVariables(t *ast.Task, call *Call) (*ast.Vars, error) { |
| 41 | return c.getVariables(t, call, true) |
| 42 | } |
| 43 | |
| 44 | func (c *Compiler) FastGetVariables(t *ast.Task, call *Call) (*ast.Vars, error) { |
| 45 | return c.getVariables(t, call, false) |
no test coverage detected