mirror of
https://github.com/luau-lang/luau.git
synced 2025-05-04 10:33:46 +01:00
Change name
This commit is contained in:
parent
2a41dca9d4
commit
e496c86581
1 changed files with 2 additions and 2 deletions
|
@ -349,9 +349,9 @@ struct ConstantVisitor : AstVisitor
|
||||||
if (cond.type != Constant::Type_Unknown)
|
if (cond.type != Constant::Type_Unknown)
|
||||||
result = cond.isTruthful() ? trueExpr : falseExpr;
|
result = cond.isTruthful() ? trueExpr : falseExpr;
|
||||||
}
|
}
|
||||||
else if (AstExprInterpString* interpString = node->as<AstExprInterpString>())
|
else if (AstExprInterpString* expr = node->as<AstExprInterpString>())
|
||||||
{
|
{
|
||||||
for (AstExpr* expression : interpString->expressions)
|
for (AstExpr* expression : expr->expressions)
|
||||||
analyze(expression);
|
analyze(expression);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Add table
Reference in a new issue