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