Marc Vertes

Results 69 comments of Marc Vertes

The `reflect` package from stdlib doesn't allow to create methods on types. This feature is emulated in yaegi. As a result, there is no method visible by reflect, thus the...

Most of `build.Context` data are relevant for the go compiler, and not at all for the interpreter. I find it wrong to expose all of it as part of the...

Just retested it, and it works with v0.12.0

Hello @kortschak, thank you for your feedback and your interest in yaegi, and congrats for gonum, which is really an impressive piece of software, of massive importance. The issue you...

@sbinet, I understand your demand, but we do not plan to use `plugin` in `yaegi/interp` for the moment, due to portability and stability issues. This is something we may revisit...

Just tested the following with yaegi-v0.14.2: sample.go: ```go // yaegi:tags safe package main import ( "fmt" "gonum.org/v1/gonum/mat" ) func main() { var c mat.Dense fmt.Println(c) } ``` ```console $ yaegi...

@flemzord, thanks for asking this. This issue does not occur anymore with yaegi-v0.14.2, so I'm closing it. Cheers.