mirror of
				https://gitea.com/Lydanne/buildx.git
				synced 2025-11-04 18:13:42 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			94 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			94 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package cty
 | 
						|
 | 
						|
// unknownType is the placeholder type used for the sigil value representing
 | 
						|
// "Unknown", to make it unambigiously distinct from any other possible value.
 | 
						|
type unknownType struct {
 | 
						|
	// refinement is an optional object which, if present, describes some
 | 
						|
	// additional constraints we know about the range of real values this
 | 
						|
	// unknown value could be a placeholder for.
 | 
						|
	refinement unknownValRefinement
 | 
						|
}
 | 
						|
 | 
						|
// totallyUnknown is the representation a a value we know nothing about at
 | 
						|
// all. Subsequent refinements of an unknown value will cause creation of
 | 
						|
// other values of unknownType that can represent additional constraints
 | 
						|
// on the unknown value, but all unknown values start as totally unknown
 | 
						|
// and we will also typically lose all unknown value refinements when
 | 
						|
// round-tripping through serialization formats.
 | 
						|
var totallyUnknown interface{} = &unknownType{}
 | 
						|
 | 
						|
// UnknownVal returns an Value that represents an unknown value of the given
 | 
						|
// type. Unknown values can be used to represent a value that is
 | 
						|
// not yet known. Its meaning is undefined in cty, but it could be used by
 | 
						|
// an calling application to allow partial evaluation.
 | 
						|
//
 | 
						|
// Unknown values of any type can be created of any type. All operations on
 | 
						|
// Unknown values themselves return Unknown.
 | 
						|
func UnknownVal(t Type) Value {
 | 
						|
	return Value{
 | 
						|
		ty: t,
 | 
						|
		v:  totallyUnknown,
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func (t unknownType) GoString() string {
 | 
						|
	// This is the stringification of our internal unknown marker. The
 | 
						|
	// stringification of the public representation of unknowns is in
 | 
						|
	// Value.GoString.
 | 
						|
	return "cty.unknown"
 | 
						|
}
 | 
						|
 | 
						|
type pseudoTypeDynamic struct {
 | 
						|
	typeImplSigil
 | 
						|
}
 | 
						|
 | 
						|
// DynamicPseudoType represents the dynamic pseudo-type.
 | 
						|
//
 | 
						|
// This type can represent situations where a type is not yet known. Its
 | 
						|
// meaning is undefined in cty, but it could be used by a calling
 | 
						|
// application to allow expression type checking with some types not yet known.
 | 
						|
// For example, the application might optimistically permit any operation on
 | 
						|
// values of this type in type checking, allowing a partial type-check result,
 | 
						|
// and then repeat the check when more information is known to get the
 | 
						|
// final, concrete type.
 | 
						|
//
 | 
						|
// It is a pseudo-type because it is used only as a sigil to the calling
 | 
						|
// application. "Unknown" is the only valid value of this pseudo-type, so
 | 
						|
// operations on values of this type will always short-circuit as per
 | 
						|
// the rules for that special value.
 | 
						|
var DynamicPseudoType Type
 | 
						|
 | 
						|
func (t pseudoTypeDynamic) Equals(other Type) bool {
 | 
						|
	_, ok := other.typeImpl.(pseudoTypeDynamic)
 | 
						|
	return ok
 | 
						|
}
 | 
						|
 | 
						|
func (t pseudoTypeDynamic) FriendlyName(mode friendlyTypeNameMode) string {
 | 
						|
	switch mode {
 | 
						|
	case friendlyTypeConstraintName:
 | 
						|
		return "any type"
 | 
						|
	default:
 | 
						|
		return "dynamic"
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func (t pseudoTypeDynamic) GoString() string {
 | 
						|
	return "cty.DynamicPseudoType"
 | 
						|
}
 | 
						|
 | 
						|
// DynamicVal is the only valid value of the pseudo-type dynamic.
 | 
						|
// This value can be used as a placeholder where a value or expression's
 | 
						|
// type and value are both unknown, thus allowing partial evaluation. See
 | 
						|
// the docs for DynamicPseudoType for more information.
 | 
						|
var DynamicVal Value
 | 
						|
 | 
						|
func init() {
 | 
						|
	DynamicPseudoType = Type{
 | 
						|
		pseudoTypeDynamic{},
 | 
						|
	}
 | 
						|
	DynamicVal = Value{
 | 
						|
		ty: DynamicPseudoType,
 | 
						|
		v:  totallyUnknown,
 | 
						|
	}
 | 
						|
}
 |