Rudolf Farkas

Results 18 comments of Rudolf Farkas

Elaborating from testscript above by @rogpeppe, this shows similarities and differences between `fmt`, `def` and `export --out cue`. Are any of these differences intended? ``` # show the`cue export` handling...

I found this PR while looking for discussions about custom conditions in testscript. I could not find in this PR any doc that would explain its purpose and use cases;...

Hi @angrycat9000 (1) Let me ask for some clarifications: "_Use custom element web components to allow cesium to be used declaratively in HTML._" I would interpret this to mean 'use...

Hi @angrycat9000 Thank you for the comments and clarifications. > it might also make sense to just write it as a vanilla custom element with no framework I think that...

As of `cue v0.6.0` I cannot reproduce this bug ``` # issue #1478 is not reproducible as of cue v0.6.0--------- exec cat 1478G.cue exec cue fmt 1478G.cue ### fmt works...

Same problem here, with 0.15 1964, on OS X 10.12.6: app crashes every time on Create New Branch; however the new branch IS created.

This is same as `cmd/fmt: single import and comment combined` #1447. The newline after the comment triggers the bug, as the comment gets associated with the previous `import` line, then...

Here is the test module ``` module example.com/try-litter go 1.21.0 require ( cuelang.org/go v0.6.0 github.com/davecgh/go-spew v1.1.1 github.com/sanity-io/litter v1.5.5 ) require ( github.com/cockroachdb/apd/v3 v3.2.0 // indirect github.com/google/uuid v1.2.0 // indirect github.com/mpvl/unique...

1. Investigating the crash with `testscript scenario4.txt`: It occurs in `./internal/core/adt/composite.go:320:func (v *Vertex) updateArcType(t ArcType)` ``` // updateArcType updates v.ArcType if t is more restrictive. func (v *Vertex) updateArcType(t ArcType)...

2. Investigating the error with `testscript scenario2.txt`: After the fix, `scenario4.txt` produces the same error as `scenario2.txt`: ``` items.a: cannot add to field _: ./example2.cue:1:32 ``` The error is emitted...