1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
package cueexperiment
import (
"sync"
"cuelang.org/go/internal/envflag"
)
// Flags holds the set of global CUE_EXPERIMENT flags. It is initialized by Init.
//
// When adding, deleting, or modifying entries below,
// update cmd/cue/cmd/help.go as well for `cue help environment`.
var Flags struct {
// EvalV3 enables the new evaluator. The new evaluator addresses various
// performance concerns.
EvalV3 bool
// Embed enables file embedding.
Embed bool `envflag:"default:true"`
// DecodeInt64 changes [cuelang.org/go/cue.Value.Decode] to choose
// `int64` rather than `int` as the default type for CUE integer values
// to ensure consistency with 32-bit platforms.
DecodeInt64 bool `envflag:"default:true"`
// Enable topological sorting of struct fields.
TopoSort bool `envflag:"default:true"`
// The flags below describe completed experiments; they can still be set
// as long as the value aligns with the final behavior once the experiment finished.
// Breaking users who set such a flag seems unnecessary,
// and it simplifies using the same experiment flags across a range of CUE versions.
// Modules was an experiment which ran from early 2023 to late 2024.
Modules bool `envflag:"deprecated,default:true"`
// YAMLV3Decoder was an experiment which ran from early 2024 to late 2024.
YAMLV3Decoder bool `envflag:"deprecated,default:true"`
}
// Init initializes Flags. Note: this isn't named "init" because we
// don't always want it to be called (for example we don't want it to be
// called when running "cue help"), and also because we want the failure
// mode to be one of error not panic, which would be the only option if
// it was a top level init function.
func Init() error {
return initOnce()
}
var initOnce = sync.OnceValue(func() error {
return envflag.Init(&Flags, "CUE_EXPERIMENT")
})
|