vendor: update github.com/zclconf/go-cty to v1.14.1

Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax
2023-10-19 14:52:01 +02:00
parent 457dc402d3
commit beca8b6adf
20 changed files with 96 additions and 12771 deletions

View File

@ -21,6 +21,10 @@ import (
// offered by ranges and so can share code between both known and unknown
// values.
func (v Value) Range() ValueRange {
if v.IsMarked() {
panic("Value.Range on marked value; must be unmarked first")
}
// For an unknown value we just use its own refinements.
if unk, isUnk := v.v.(*unknownType); isUnk {
refinement := unk.refinement