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:
parent
e94566b958
commit
20faf884f5
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue