summaryrefslogtreecommitdiff
path: root/installed-tests/debugger/keys.debugger.js
blob: 8176360ffbc527703dced854751fae5191ecfb9d (plain)
1
2
3
4
5
6
7
8
9
10
// SPDX-License-Identifier: MIT OR LGPL-2.0-or-later
// SPDX-FileCopyrightText: 2018 Philip Chimento <philip.chimento@gmail.com>
const a = {
    foo: 1,
    bar: null,
    tres: undefined,
    [Symbol('s')]: 'string',
};
debugger;
void a;