/* * Copyright (c) 2021, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #include namespace JS::Bytecode { void Executable::dump() const { for (auto& block : basic_blocks) block.dump(*this); if (!string_table->is_empty()) { outln(); string_table->dump(); } } }