...

Text file src/cuelang.org/go/internal/core/export/testdata/main/issue662.txtar

Documentation: cuelang.org/go/internal/core/export/testdata/main

     1
     2-- uplot.cue --
     3#LineConfig: {
     4	lineColor?: string
     5}
     6
     7#GraphFieldConfig: #LineConfig & {
     8	drawStyle?: int
     9}
    10-- out/definition --
    11#LineConfig: {
    12	lineColor?: string
    13}
    14#GraphFieldConfig: #LineConfig & {
    15	drawStyle?: int
    16}
    17-- out/doc --
    18[]
    19[#LineConfig]
    20[#LineConfig lineColor]
    21[#GraphFieldConfig]
    22[#GraphFieldConfig lineColor]
    23[#GraphFieldConfig drawStyle]
    24-- out/value --
    25== Simplified
    26{}
    27== Raw
    28{
    29	#LineConfig: {
    30		lineColor?: string
    31	}
    32	#GraphFieldConfig: {
    33		lineColor?: string
    34		drawStyle?: int
    35	}
    36}
    37== Final
    38{}
    39== All
    40{
    41	#LineConfig: {
    42		lineColor?: string
    43	}
    44	#GraphFieldConfig: {
    45		lineColor?: string
    46		drawStyle?: int
    47	}
    48}
    49== Eval
    50{
    51	#LineConfig: {
    52		lineColor?: string
    53	}
    54	#GraphFieldConfig: {
    55		lineColor?: string
    56		drawStyle?: int
    57	}
    58}

View as plain text