Merge pull request #13178 from jordan-woyak/input-expressions-conditional-op

InputCommon: Add ternary conditional operator to input expressions.
This commit is contained in:
JMC47 2025-01-27 21:16:29 -05:00 committed by GitHub
commit e18a4d04b4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 52 additions and 13 deletions

View file

@ -26,6 +26,8 @@ enum TokenType
TOK_BAREWORD,
TOK_COMMENT,
TOK_HOTKEY,
TOK_QUESTION,
TOK_COLON,
// Binary Ops:
TOK_BINARY_OPS_BEGIN,
TOK_AND = TOK_BINARY_OPS_BEGIN,