cueckoo

Results 280 comments of cueckoo

_Original reply by @myitcv in https://github.com/cuelang/cue/issues/758#issuecomment-778179311_ @verdverm I updated your description FYI so that the repro works. Reduced this further: ``` exec cue eval chaining.cue -- chaining.cue -- A: #Task...

_Original reply by @mpvl in https://github.com/cuelang/cue/issues/758#issuecomment-780505198_ f5ac9f3 already reduces some significant strain of this issue. We plan to do a address disjunction performance in a more structured manner as part...

_Original reply by @seh in https://github.com/cuelang/cue/issues/543#issuecomment-698901442_ > So in the example, `pkg#limit` is qualified by the tuple ("acme.com/foo", #limit). Should that be `("example.com/pkg", #limit)` instead? Isn't `#limit` being defined in...

_Original reply by @mpvl in https://github.com/cuelang/cue/issues/543#issuecomment-698940196_ @seh: yes, good catch (I've changed it in the original). @seh: the scoped/ qualified definitions (`pkg#limit`) are not part of the proposal. The actual...

_Original reply by @mpvl in https://github.com/cuelang/cue/issues/543#issuecomment-698955930_ @seh, I grouped the non-proposal part in discussions under "possible future extensions"

_Original reply by @eonpatapon in https://github.com/cuelang/cue/issues/543#issuecomment-699467658_ Quite agree with this proposal as if the def is closed (ie not including `...` and friends) it shouldn't allow the addition of regular...

_Original reply by @myitcv in https://github.com/cuelang/cue/issues/543#issuecomment-699587045_ > What's the advantage of declaring `#limit` in `#E` ? It could be declared at the root and used in `#E` without breaking any...

_Original reply by @myitcv in https://github.com/cuelang/cue/issues/543#issuecomment-699587514_ > But it's not clear to me why `...` would allow only regular fields. With `...` in the def you can have same the...

_Original reply by @eonpatapon in https://github.com/cuelang/cue/issues/543#issuecomment-699608170_ > > What's the advantage of declaring `#limit` in `#E` ? It could be declared at the root and used in `#E` without breaking...

_Original reply by @myitcv in https://github.com/cuelang/cue/issues/543#issuecomment-699609207_ @eonpatapon apologies, I misinterpreted what you wrote: > It could be declared at the root as meaning "could be declared on the root type,...