LibJS: Dump CallExpression arguments (if any)

This commit is contained in:
Andreas Kling 2020-03-12 19:34:59 +01:00
parent 137d68a2ae
commit 25db856134
Notes: sideshowbarker 2024-07-19 08:20:32 +09:00

View File

@ -318,6 +318,9 @@ void CallExpression::dump(int indent) const
{
print_indent(indent);
printf("%s '%s'\n", class_name(), name().characters());
for (auto& argument : m_arguments)
argument.dump(indent + 1);
}
void StringLiteral::dump(int indent) const