...

Text file src/cuelang.org/go/encoding/openapi/testdata/refs.cue

Documentation: cuelang.org/go/encoding/openapi/testdata

     1#Keep: {
     2	// This comment is included
     3	excludedStruct: #ExcludedStruct
     4	excludedInt:    #ExcludedInt
     5}
     6
     7// ExcludedStruct is not included in the output.
     8#ExcludedStruct: {
     9	A: int
    10}
    11
    12// ExcludedInt is not included in the output.
    13#ExcludedInt: int
    14
    15#Type: {
    16	a?: string
    17	#BaseType
    18}
    19#BaseType: {
    20	b: string
    21}

View as plain text