1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +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)
return;
Visit(node);
Visit((BfAstNode*)node);
Write(node, node->GetSrcStart(), 0);
Write(BfTokenToString(token));
};