summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Bytecode/Executable.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibJS/Bytecode/Executable.cpp')
-rw-r--r--Userland/Libraries/LibJS/Bytecode/Executable.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/Bytecode/Executable.cpp b/Userland/Libraries/LibJS/Bytecode/Executable.cpp
index d299edceb9..722388e51b 100644
--- a/Userland/Libraries/LibJS/Bytecode/Executable.cpp
+++ b/Userland/Libraries/LibJS/Bytecode/Executable.cpp
@@ -12,7 +12,7 @@ void Executable::dump() const
{
dbgln("\033[33;1mJS::Bytecode::Executable\033[0m ({})", name);
for (auto& block : basic_blocks)
- block.dump(*this);
+ block->dump(*this);
if (!string_table->is_empty()) {
outln();
string_table->dump();