mholt / json-to-go

Translates JSON into a Go type in your browser instantly (original)
https://mholt.github.io/json-to-go/
MIT License
4.51k stars 475 forks source link

fix scope of exp #129

Closed grische closed 4 months ago

grische commented 4 months ago

const makes exp only block-scoped. This avoids accidental side-effects of a previously defined exp inside the loop.

mholt commented 4 months ago

Thanks!