mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2025-01-31 20:40:33 +00:00
- handle trinary conditional statement.
This commit is contained in:
parent
a6a0c4b93c
commit
1c21dbc44c
1 changed files with 14 additions and 4 deletions
|
@ -2503,6 +2503,16 @@ FxExpression *ZCCCompiler::ConvertNode(ZCC_TreeNode *ast)
|
|||
}
|
||||
break;
|
||||
}
|
||||
|
||||
case AST_ExprTrinary:
|
||||
{
|
||||
auto trinary = static_cast<ZCC_ExprTrinary *>(ast);
|
||||
auto condition = ConvertNode(trinary->Test);
|
||||
auto left = ConvertNode(trinary->Left);
|
||||
auto right = ConvertNode(trinary->Right);
|
||||
|
||||
return new FxConditional(condition, left, right);
|
||||
}
|
||||
}
|
||||
|
||||
// only for development. I_Error is more convenient here than a normal error.
|
||||
|
|
Loading…
Reference in a new issue