mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 06:38:10 +00:00
LibJS: Fix NumericLiteral::dump() output
This commit is contained in:
parent
92d1014051
commit
cc8e3048bc
1 changed files with 1 additions and 1 deletions
|
@ -332,7 +332,7 @@ void StringLiteral::dump(int indent) const
|
|||
void NumericLiteral::dump(int indent) const
|
||||
{
|
||||
print_indent(indent);
|
||||
printf("NumberLiteral %g\n", m_value);
|
||||
printf("NumericLiteral %g\n", m_value);
|
||||
}
|
||||
|
||||
void BooleanLiteral::dump(int indent) const
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue