LibJS: Remove stray '%' from MemberExpression AST dump

This commit is contained in:
Andreas Kling 2021-04-24 13:49:43 +02:00
parent 8ebb9d350c
commit 3a4d42bbbb

View file

@ -1694,7 +1694,7 @@ Value ObjectExpression::execute(Interpreter& interpreter, GlobalObject& global_o
void MemberExpression::dump(int indent) const
{
print_indent(indent);
outln("%{}(computed={})", class_name(), is_computed());
outln("{}(computed={})", class_name(), is_computed());
m_object->dump(indent + 1);
m_property->dump(indent + 1);
}