| 20 | ) |
| 21 | |
| 22 | type Compiler struct { |
| 23 | Dir string |
| 24 | Entrypoint string |
| 25 | UserWorkingDir string |
| 26 | |
| 27 | TaskfileEnv *ast.Vars |
| 28 | TaskfileVars *ast.Vars |
| 29 | |
| 30 | Logger *logger.Logger |
| 31 | |
| 32 | dynamicCache map[string]string |
| 33 | muDynamicCache sync.Mutex |
| 34 | } |
| 35 | |
| 36 | func (c *Compiler) GetTaskfileVariables() (*ast.Vars, error) { |
| 37 | return c.getVariables(nil, nil, true) |
nothing calls this directly
no outgoing calls
no test coverage detected