Files
Kmake/test/fixtures/repl-pretty-stack.js

19 lines
162 B
JavaScript
Raw Permalink Normal View History

2026-05-26 23:36:42 -07:00
'use strict';
function a() {
b();
}
function b() {
c();
}
function c() {
d(function() { throw new Error('Whoops!'); });
}
function d(f) {
f();
}
a();