MCPcopy Create free account
hub / github.com/go-task/task / Compiler

Struct Compiler

compiler.go:22–34  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20)
21
22type 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
36func (c *Compiler) GetTaskfileVariables() (*ast.Vars, error) {
37 return c.getVariables(nil, nil, true)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected