summaryrefslogtreecommitdiff
path: root/installed-tests/debugger/throw.debugger.js
blob: 80ee28c6616163d7f1383c0c026651812b83e338 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// SPDX-License-Identifier: MIT OR LGPL-2.0-or-later
// SPDX-FileCopyrightText: 2018 Philip Chimento <philip.chimento@gmail.com>
function a() {
    debugger;
    return 5;
}

try {
    a();
} catch (e) {
    print(`Exception: ${e}`);
}