/* * Copyright (c) 2021, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include namespace JS { struct EnvironmentCoordinate { size_t hops { 0 }; size_t index { 0 }; static constexpr size_t global_marker = 0xffffffff; }; }