terraform/config/lang/ast/literal.go

9 lines
206 B
Go
Raw Normal View History

2015-01-11 21:38:45 +01:00
package ast
// LiteralNode represents a single literal value, such as "foo" or
// 42 or 3.14159. Based on the Type, the Value can be safely cast.
type LiteralNode struct {
Value interface{}
Type Type
}