summaryrefslogtreecommitdiff
path: root/Libraries/LibJS/AST.cpp
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-03-12 19:36:24 +0100
committerAndreas Kling <kling@serenityos.org>2020-03-12 19:36:24 +0100
commitcc8e3048bc7d807154765297d4bf381f368bf3ed (patch)
tree154fb2c256ac38773ce4dc1cbff06bf5597664e5 /Libraries/LibJS/AST.cpp
parent92d10140515295a3e9de5ba4b016ad63f398d837 (diff)
downloadserenity-cc8e3048bc7d807154765297d4bf381f368bf3ed.zip
LibJS: Fix NumericLiteral::dump() output
Diffstat (limited to 'Libraries/LibJS/AST.cpp')
-rw-r--r--Libraries/LibJS/AST.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibJS/AST.cpp b/Libraries/LibJS/AST.cpp
index b7b821080e..7539dcf0f3 100644
--- a/Libraries/LibJS/AST.cpp
+++ b/Libraries/LibJS/AST.cpp
@@ -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