blob: 890d30beb934f527a65f738b5035cdc04b67012b [file] [log] [blame]
package config
import (
"github.com/hashicorp/hil/ast"
)
type noopNode struct{}
func (n *noopNode) Accept(ast.Visitor) ast.Node { return n }
func (n *noopNode) Pos() ast.Pos { return ast.Pos{} }
func (n *noopNode) Type(ast.Scope) (ast.Type, error) { return ast.TypeString, nil }