terraform/config/lang/ast/call.go

8 lines
96 B
Go

package ast
// Call represents a function call.
type Call struct {
Func string
Args []Node
}