mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-26 01:20:25 +00:00
LibJS: Remove stray '%' from MemberExpression AST dump
This commit is contained in:
parent
8ebb9d350c
commit
3a4d42bbbb
Notes:
sideshowbarker
2024-07-18 19:09:28 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/3a4d42bbbbd
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue