Improve SetInterrupt performance.

This commit is contained in:
Nuno Cruces
2025-03-23 11:04:10 +00:00
parent 35a2dbd847
commit c067e3630b
4 changed files with 36 additions and 32 deletions

View File

@@ -284,10 +284,10 @@ func returnArgs(p *[]Value) {
}
type aggregateFunc struct {
ctx Context
arg []Value
next func() (struct{}, bool)
stop func()
ctx Context
arg []Value
}
func (a *aggregateFunc) Step(ctx Context, arg ...Value) {