summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-04-24 13:49:43 +0200
committerAndreas Kling <kling@serenityos.org>2021-04-24 18:50:12 +0200
commit3a4d42bbbbd2b664d8178b4ac2726bf19e7ca24a (patch)
treef7a68c3b991e323b967655c3d4a6bd02aadaf26a
parent8ebb9d350c6fd667c8aafede1a37072d787f89b3 (diff)
downloadserenity-3a4d42bbbbd2b664d8178b4ac2726bf19e7ca24a.zip
LibJS: Remove stray '%' from MemberExpression AST dump
-rw-r--r--Userland/Libraries/LibJS/AST.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/AST.cpp b/Userland/Libraries/LibJS/AST.cpp
index b73166063e..2756de4796 100644
--- a/Userland/Libraries/LibJS/AST.cpp
+++ b/Userland/Libraries/LibJS/AST.cpp
@@ -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);
}