We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32b891d commit 5925362Copy full SHA for 5925362
src/NZSL/Ast/Transformations/Transformer.cpp
@@ -375,7 +375,6 @@ namespace nzsl::Ast
375
FinishExpressionHandling();
376
}
377
378
- PushScope();
379
if (!m_flags.Test(TransformerFlag::TransformDisabled) && node.condition->GetType() == NodeType::ConstantValueExpression)
380
{
381
auto& constantVal = static_cast<ConstantValueExpression&>(*node.condition);
@@ -384,7 +383,6 @@ namespace nzsl::Ast
384
383
385
386
HandleStatement(node.statement);
387
- PopScope();
388
389
390
void Transformer::HandleChildren(ContinueStatement& /*node*/)
0 commit comments