1
0
Fork 0
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:
Andreas Kling 2020-03-12 19:36:24 +01:00
parent 92d1014051
commit cc8e3048bc
Notes: sideshowbarker 2024-07-19 08:20:27 +09:00

View file

@ -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