Files
Nasal-Interpreter/test/special_call_trace.nas
ValKmjolnir 6034234c87
Some checks failed
Nasal Interpreter Test / mac-aarch64 (push) Has been cancelled
Nasal Interpreter Test / linux-x86_64 (push) Has been cancelled
🐛 fix call trace issue #69
2025-07-30 20:32:25 +08:00

15 lines
163 B
Plaintext

var f = func() {
append({}, []);
}
var b = func(f...) {
foreach(var i; f) {
i();
}
}
b(f);
func(a, b, c) {
f()
}(0, 1, 2);