1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:37:35 +00:00

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

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