-
I'm trying to produce text output from a From reading the source code, I see that Would it be possible to move |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
One thing to note is that This is the last I heard about it anyway |
Beta Was this translation helpful? Give feedback.
-
I'm generally fine with that. I wan't sure whether the constants were in the right package and whether this should be only exposed as a higher-level construct in the We also wanted to change |
Beta Was this translation helpful? Give feedback.
-
This discussion has been migrated to cue-lang/cue#448. For more details about CUE's migration to a new home, please see cue-lang/cue#1078. |
Beta Was this translation helpful? Give feedback.
I'm generally fine with that. I wan't sure whether the constants were in the right package and whether this should be only exposed as a higher-level construct in the
load
package.We also wanted to change
ParseFile(filename string, src interface{})
signature to something likeParse(src Source)
to allow something likeParse(build.Bytes(filename, b))
, for instance.