call.go 185 B

123456789
  1. package ast
  2. // Call is the parameters to a task call
  3. type Call struct {
  4. Task string
  5. Vars *Vars
  6. Silent bool
  7. Indirect bool // True if the task was called by another task
  8. }