github.com/solo-io/cue@v0.4.7/encoding/openapi/testdata/refs.cue (about)

     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  }