summaryrefslogtreecommitdiff
path: root/installed-tests/debugger/step.debugger.js
blob: 7450d2ea1d97618be4c9e2729caf62d44076eb1c (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() {
    b();
    print('A line in a');
}

function b() {
    print('A line in b');
}

a();