traefik / yaegi

Yaegi is Another Elegant Go Interpreter
https://pkg.go.dev/github.com/traefik/yaegi
Apache License 2.0
7.02k stars 348 forks source link

fix: don't panic in map range if assigned value is _ #1625

Closed mvertes closed 5 months ago

mvertes commented 5 months ago

Ensure that the code generated for for s, _ = range ... is the same as for s = range ....

Fixes #1622.