// SPDX-License-Identifier: MIT OR LGPL-2.0-or-later // SPDX-FileCopyrightText: 2018 Philip Chimento function a() { b(); } function b() { c(); } function c() { d(); } function d() { debugger; } a();