terraform/config/lang/ast/call.go

8 lines
96 B
Go
Raw Normal View History

2015-01-11 22:03:37 +01:00
package ast
// Call represents a function call.
type Call struct {
Func string
Args []Node
}