1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00

Fixed IsVar check

This commit is contained in:
Brian Fiete 2022-01-22 07:01:57 -05:00
parent f4aa6c26ff
commit 27a792e559
2 changed files with 4 additions and 4 deletions

View file

@ -404,7 +404,7 @@ public:
BfExprEvaluator(BfModule* module);
~BfExprEvaluator();
bool IsVar(BfType* type);
bool IsVar(BfType* type, bool forceIgnoreWrites = false);
void GetLiteral(BfAstNode* refNode, const BfVariant& variant);
void FinishExpressionResult();
virtual bool CheckAllowValue(const BfTypedValue& typedValue, BfAstNode* refNode);