mirror of
https://github.com/beefytech/Beef.git
synced 2025-07-04 23:36:00 +02:00
Deferred evaluation support for binary operators
This commit is contained in:
parent
7093476126
commit
0ebd306d93
5 changed files with 108 additions and 18 deletions
|
@ -347,7 +347,8 @@ enum BfBinOpFlags
|
|||
BfBinOpFlag_NoClassify = 1,
|
||||
BfBinOpFlag_ForceLeftType = 2,
|
||||
BfBinOpFlag_IgnoreOperatorWithWrongResult = 4,
|
||||
BfBinOpFlag_IsConstraintCheck = 8
|
||||
BfBinOpFlag_IsConstraintCheck = 8,
|
||||
BfBinOpFlag_DeferRight = 0x10
|
||||
};
|
||||
|
||||
class BfExprEvaluator : public BfStructuralVisitor
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue