浏览代码

LibJS: Remove stray '%' from MemberExpression AST dump

Andreas Kling 4 年之前
父节点
当前提交
3a4d42bbbb
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Userland/Libraries/LibJS/AST.cpp

+ 1 - 1
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);
 }