cuelang.org/go@v0.10.1/internal/core/dep/testdata/call.txtar (about) 1 -- in.cue -- 2 import "encoding/json" 3 4 // The reference to string needs to be included even for Visit. 5 a: b: json.Marshal({#a: str}) 6 7 str: "x:y:z" 8 -- out/dependencies/field -- 9 line reference path of resulting vertex 10 4: json.Marshal => "encoding/json".Marshal 11 4: str => str 12 -- out/dependencies/all -- 13 line reference path of resulting vertex 14 4: json.Marshal => "encoding/json".Marshal 15 4: str => str 16 -- out/dependencies/dynamic -- 17 line reference path of resulting vertex 18 4: json.Marshal => "encoding/json".Marshal 19 4: str => str