mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-11 18:20:43 +09:00
LibJS: Fix NumericLiteral::dump() output
This commit is contained in:
parent
92d1014051
commit
cc8e3048bc
Notes:
sideshowbarker
2024-07-19 08:20:27 +09:00
Author: https://github.com/awesomekling
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