mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-22 10:19:20 +00:00
LibCpp: Fix busted outln() invocations
This commit is contained in:
parent
67d5c9e154
commit
0bb2729423
Notes:
sideshowbarker
2024-07-18 22:02:12 +09:00
Author: https://github.com/awesomekling
Commit: 0bb2729423
1 changed files with 2 additions and 2 deletions
|
@ -99,12 +99,12 @@ void FunctionDefinition::dump(size_t indent) const
|
|||
{
|
||||
ASTNode::dump(indent);
|
||||
print_indent(indent);
|
||||
outln("{");
|
||||
outln("{{");
|
||||
for (const auto& statement : m_statements) {
|
||||
statement.dump(indent + 1);
|
||||
}
|
||||
print_indent(indent);
|
||||
outln("}");
|
||||
outln("}}");
|
||||
}
|
||||
|
||||
NonnullRefPtrVector<Declaration> FunctionDefinition::declarations() const
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue