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
// Running for more than a minute. This should never happen.
22
-
returnnil, mem, r.errorAt(fn.blocks[0].instructions[0], fmt.Errorf("interp: running for more than a minute, timing out (executed calls: %d)", r.callsExecuted))
23
-
}
20
+
t0:=time.Since(r.start)
24
21
25
22
// Parameters are considered a kind of local values.
// Running for more than maxInterpSeconds seconds. This should never happen.
114
+
returnnil, mem, r.errorAt(fn.blocks[0].instructions[0], fmt.Errorf("interp: running for more than %d seconds, timing out (executed calls: %d)", maxInterpSeconds, r.callsExecuted))
0 commit comments