We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2f5bfb commit 3b239b6Copy full SHA for 3b239b6
Userland/Libraries/LibJS/JIT/Compiler.cpp
@@ -164,7 +164,6 @@ void Compiler::compile_jump_conditional(Bytecode::Op::JumpConditional const& op)
164
165
[[maybe_unused]] static Value cxx_increment(VM& vm, Value value)
166
{
167
- dbgln("cxx_increment {}", value);
168
auto old_value = TRY_OR_SET_EXCEPTION(value.to_numeric(vm));
169
if (old_value.is_number())
170
return Value(old_value.as_double() + 1);
0 commit comments