Damian Gryski

Results 276 comments of Damian Gryski

The `go-yaml/yaml` tests won't pass because they rely on `Method` functions, which we don't support for reflect. However basic yaml support should be working on the last few PRs are...

The issue in `unsafe.go` is code that is inherently non-portable. You will need tinygo-specific version of that file / function. Edit: looks like there is already a `safe.go` version; you...

While much work has been done on reflection recently, `mapstructure` uses a number of features that we don't support yet, most notably creating types at runtime with `MapOf` and friends....

Superseded by https://github.com/tinygo-org/tinygo/pull/3498

`compress/lzw` isn't playing nicely with wasi at all. https://github.com/tinygo-org/tinygo/issues/2525 Closing as a dupe for now.

Does this include the change you said was causing memory corruption?

Interesting, this now causes a corpus test failure: ``` ~/go/src/github.com/dgryski/tinygo-test-corpus/_corpus/gonum/gonum/lapack/gonum $ tinygo test -tags="noasm appengine" panic: runtime error: out of memory FAIL gonum.org/v1/gonum/lapack/gonum 54.462s ``` This package passes with the...

Huh. I'll recheck gonum now that you've finished the rebase. I'll start working on this Monday.

Yup. `gonum` tests pass for me now too.

Hmm... back to this repo I'm now fairly consistently getting oom panics, but not always. There must be something wonky happening here. Edit: Ok, so out of 5 runs it...