diff options
author | Andreas Kling <kling@serenityos.org> | 2020-03-12 19:36:24 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-03-12 19:36:24 +0100 |
commit | cc8e3048bc7d807154765297d4bf381f368bf3ed (patch) | |
tree | 154fb2c256ac38773ce4dc1cbff06bf5597664e5 /Libraries/LibJS/AST.cpp | |
parent | 92d10140515295a3e9de5ba4b016ad63f398d837 (diff) | |
download | serenity-cc8e3048bc7d807154765297d4bf381f368bf3ed.zip |
LibJS: Fix NumericLiteral::dump() output
Diffstat (limited to 'Libraries/LibJS/AST.cpp')
-rw-r--r-- | Libraries/LibJS/AST.cpp | 2 |
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 |