mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 19:48:20 +02:00
New function/delegate casting rules, similar to tuple rules
This commit is contained in:
parent
c62dbdf811
commit
de6a68911a
8 changed files with 143 additions and 32 deletions
|
@ -12444,6 +12444,9 @@ void BfModule::CreateDIRetVal()
|
|||
|
||||
void BfModule::CheckVariableDef(BfLocalVariable* variableDef)
|
||||
{
|
||||
if (variableDef->mName.IsEmpty())
|
||||
return;
|
||||
|
||||
BfLocalVarEntry* localVarEntryPtr = NULL;
|
||||
if ((mCurMethodState != NULL) && (mCurMethodState->mLocalVarSet.TryGet(BfLocalVarEntry(variableDef), &localVarEntryPtr)))
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue