dhall-golang icon indicating copy to clipboard operation
dhall-golang copied to clipboard

Dhall bindings for go

Results 12 dhall-golang issues
Sort by recently updated
recently updated
newest added

Hey there, not sure if this is much of an issue, but I did run into some sharp edges when trying to unmarshall a function that takes a struct. After...

Bumps [golang.org/x/sys](https://github.com/golang/sys) from 0.0.0-20190412213103-97732733099d to 0.1.0. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/sys&package-manager=go_modules&previous-version=0.0.0-20190412213103-97732733099d&new-version=0.1.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

Bumps [golang.org/x/net](https://github.com/golang/net) from 0.0.0-20190404232315-eb5bcb51f2a3 to 0.7.0. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/net&package-manager=go_modules&previous-version=0.0.0-20190404232315-eb5bcb51f2a3&new-version=0.7.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

Bumps [gopkg.in/yaml.v2](https://github.com/go-yaml/yaml) from 2.2.2 to 2.2.8. Commits 53403b5 Optimize cases with long potential simple_keys (#555) 1f64d61 Fix issue in simple_keys improvements (#548) a95acef Update travis config to use latest go...

dependencies

Hi, originally asked here but no responses so far https://discourse.dhall-lang.org/t/decode-enum-using-go/492 Could you give me an example of how to decode an enum into a Go type? Dhall: ``` let Day...

Hi, It would be super useful to get a list of valid tags on a go struct.

A minimal example I could come up with was `assert : List/head {} ≡ List/head {}`, which panics dhall-golang: ``` panic: runtime error: comparing uncomparable type core.RecordType goroutine 1 [running]:...

Currently, there is no way for a user to unpack a value of union type from a Value. This also means there's no way to unmarshal a union value into...

I'm trying to unmarshal a type into a Go interface (`type Arg interface { visitArg(argVisitor) error }`); however, dhall-golang (understandably) doesn't know how to decode Dhall types into the Go...