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:
parent
f9b9b15214
commit
2ac2fe70fb
7 changed files with 67 additions and 31 deletions
|
@ -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?");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue