2023-12-29 20:32:03 +00:00
|
|
|
package ast
|
2018-02-17 14:22:18 -02:00
|
|
|
|
|
|
|
// Call is the parameters to a task call
|
|
|
|
type Call struct {
|
2024-01-11 00:32:49 +00:00
|
|
|
Task string
|
|
|
|
Vars *Vars
|
|
|
|
Silent bool
|
|
|
|
Indirect bool // True if the task was called by another task
|
2018-02-17 14:22:18 -02:00
|
|
|
}
|