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

Fixed nullable property setting

This commit is contained in:
Brian Fiete 2020-09-25 10:34:29 -07:00
parent e94566b958
commit 20faf884f5

View file

@ -17492,7 +17492,7 @@ void BfExprEvaluator::DoMemberReference(BfMemberReferenceExpression* memberRefEx
mModule->Fail("Unable to find member", nameRefNode);
}
if (isNullCondLookup)
if ((isNullCondLookup) && (mPropDef == NULL))
mResult = GetResult();
if (isCascade)