1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 19:48:20 +02:00

Fixed string interpolation scoping, {{ }} escaping

This commit is contained in:
Brian Fiete 2021-01-04 06:33:39 -08:00
parent f9b9b15214
commit 2ac2fe70fb
7 changed files with 67 additions and 31 deletions

View file

@ -651,6 +651,11 @@ void BfStructuralVisitor::Visit(BfBlock* block)
Visit(block->ToBase());
}
void BfStructuralVisitor::Visit(BfUnscopedBlock* block)
{
Visit(block->ToBase());
}
void BfStructuralVisitor::Visit(BfBlockExtension* block)
{
BF_ASSERT("Shouldn't see this block, BfBlock::Iterator not being used?");