cuelang.org/go@v0.10.1/tools/trim/testdata/remove_implied_interpolations.txtar (about)

     1  -- in.cue --
     2  foo: [string]: {
     3  	a: string
     4  	b: "--\(a)--"
     5  }
     6  foo: entry: {
     7  	a: "insert"
     8  	b: "--insert--"
     9  }
    10  -- out/trim --
    11  == in.cue
    12  foo: [string]: {
    13  	a: string
    14  	b: "--\(a)--"
    15  }
    16  foo: entry: {
    17  	a: "insert"
    18  }