summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Runtime/EnvironmentCoordinate.h
blob: 679652ec460d4daf384fd66407ddcabe9800720a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 * Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <AK/Types.h>
#include <LibJS/Forward.h>

namespace JS {

struct EnvironmentCoordinate {
    u32 hops { invalid_marker };
    u32 index { invalid_marker };

    bool is_valid() const { return hops != invalid_marker && index != invalid_marker; }

    static constexpr u32 global_marker = 0xffffffff;
    static constexpr u32 invalid_marker = 0xfffffffe;
};

}