]> git.immae.eu Git - github/fretlink/terraform-provider-statuscake.git/blob - vendor/github.com/hashicorp/terraform/config/lang.go
Initial transfer of provider code
[github/fretlink/terraform-provider-statuscake.git] / vendor / github.com / hashicorp / terraform / config / lang.go
1 package config
2
3 import (
4 "github.com/hashicorp/hil/ast"
5 )
6
7 type noopNode struct{}
8
9 func (n *noopNode) Accept(ast.Visitor) ast.Node { return n }
10 func (n *noopNode) Pos() ast.Pos { return ast.Pos{} }
11 func (n *noopNode) Type(ast.Scope) (ast.Type, error) { return ast.TypeString, nil }