terraform/config/lang/ast/concat.go

8 lines
191 B
Go
Raw Normal View History

2015-01-11 21:38:45 +01:00
package ast
// Concat represents a node where the result of two or more expressions are
// concatenated. The result of all expressions must be a string.
type Concat struct {
Exprs []Node
}