summaryrefslogtreecommitdiff
path: root/installed-tests/debugger/down-up.debugger.js
blob: da896e0463d0ce1c7c086c15df72f86969d2a5d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// SPDX-License-Identifier: MIT OR LGPL-2.0-or-later
// SPDX-FileCopyrightText: 2018 Philip Chimento <philip.chimento@gmail.com>
function a() {
    b();
}

function b() {
    c();
}

function c() {
    d();
}

function d() {
    debugger;
}

a();