Summary
I've noticed this after executing some test workloads for an unrelated issue. I also tested the following Node versions where unwinding works (both arm64 and amd64):
v20.19.1
v22.21.1
v23.11.1
To reproduce
$ nvm install v24.11.1
$ node --version
v24.11.1
$ node hello3.js
hello3.js
function bar(a, s) {
a(s)
//ads
}
function foo() {
bar(a, "Hello world!")
}
console.trace("I am here");
a = console.log
while (1) {
foo()
}
Expected output
Actual output

Summary
I've noticed this after executing some test workloads for an unrelated issue. I also tested the following Node versions where unwinding works (both arm64 and amd64):
v20.19.1v22.21.1v23.11.1To reproduce
hello3.js
Expected output
Actual output