github.com/terraform-linters/tflint-plugin-sdk@v0.22.0/tflint/text_node.go (about) 1 package tflint 2 3 import "github.com/hashicorp/hcl/v2" 4 5 // TextNode represents a text with range in the source code. 6 type TextNode struct { 7 Bytes []byte 8 Range hcl.Range 9 }