-
Originally opened by @shykes in cuelang/cue#448 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: 2 comments
-
Original reply by @verdverm in cuelang/cue#448 (comment) One thing to note is that This is the last I heard about it anyway |
Beta Was this translation helpful? Give feedback.
-
Original reply by @mpvl in cuelang/cue#448 (comment) 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.
Original reply by @mpvl in cuelang/cue#448 (comment)
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.