You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$> go test -v -count=3 ./eval
=== RUN TestExprs
--- PASS: TestExprs (0.00s)
[...]
--- FAIL: TestPrograms/method1 (0.00s)
eval_test.go:212: 25: ng eval panic: no method pool entries available for Read, func([]uint8) (int, error)
--- FAIL: TestPrograms/method2 (0.00s)
eval_test.go:212: 13: ng eval panic: no method pool entries available for Read, func([]uint8) (int, error)
[...]
The text was updated successfully, but these errors were encountered:
I am actively working on this. The method pool is a failed experiment that needs to go. I just keep getting distracted by yaks to shave when I try to fix this.
My intention is to use the Go-generating backend to construct method types usable that can be loaded as plugins when a methodik is defined. The one issue is how to use named types as part of the type (or method parameters). Restricting methodiks to struct types solves the former, but the latter is tricky.
with
go1.10beta1
, running the following failed:The text was updated successfully, but these errors were encountered: