v0.53.2
Optimizations
-
compiler/emitter: optimize
{{ render .. }}
This change optimizes the
show
statement with arender
expression, generating fewer virtual machine instructions and fewer memory allocations.
Fixes
-
cmd/scriggo: fix package name in file generated by the Import command
The scriggo command could generate an invalid Go file.
Thanks to @traetox for the contribution. -
compiler,runtime: fix builtin
delete
when key value has Scriggo typeUsing the
delete
builtin with a type declared in the interpreted source code, a runtime panic occurred.