1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 06:48:12 +00:00

LibJS/Bytecode: Exclude extra tables from bytecode executable dumps

This commit is contained in:
Andreas Kling 2024-02-04 13:16:07 +01:00
parent aada76d0fb
commit c0ec924dc9

View file

@ -41,17 +41,11 @@ Executable::~Executable() = default;
void Executable::dump() const void Executable::dump() const
{ {
dbgln("\033[33;1mJS::Bytecode::Executable\033[0m ({})", name); warnln("\033[37;1mJS bytecode executable\033[0m \"{}\"", name);
for (auto& block : basic_blocks) for (auto& block : basic_blocks)
block->dump(*this); block->dump(*this);
if (!string_table->is_empty()) {
outln(); warnln("");
string_table->dump();
}
if (!identifier_table->is_empty()) {
outln();
identifier_table->dump();
}
} }
} }