1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-11 12:54:15 +02:00

Fixed allocation indent issue

This commit is contained in:
Brian Fiete 2020-10-11 07:59:03 -07:00
parent 0d05b81a69
commit fcc82b9d24

View file

@ -1642,7 +1642,8 @@ void BfPrinter::Visit(BfObjectCreateExpression* newExpr)
{ {
if (node == NULL) if (node == NULL)
return; return;
Visit(node); Visit((BfAstNode*)node);
Write(node, node->GetSrcStart(), 0);
Write(BfTokenToString(token)); Write(BfTokenToString(token));
}; };