/* * Copyright (c) 2024, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #include #include namespace JS::Bytecode { Label::Label(Bytecode::BasicBlock const& basic_block) : m_address_or_basic_block_index(basic_block.index()) { } }