mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-09 03:52:19 +02:00
Better handling of let/var field failures
This commit is contained in:
parent
624e36b89b
commit
b63b4af6fe
5 changed files with 59 additions and 8 deletions
|
@ -2607,7 +2607,14 @@ BfProjectSet* BfModule::GetVisibleProjectSet()
|
|||
};
|
||||
|
||||
if (mCurTypeInstance != NULL)
|
||||
{
|
||||
_AddType(mCurTypeInstance);
|
||||
if ((mContext->mCurTypeState != NULL) && (mContext->mCurTypeState->mType == mCurTypeInstance))
|
||||
{
|
||||
if (mContext->mCurTypeState->mCurTypeDef != NULL)
|
||||
_AddProject(mContext->mCurTypeState->mCurTypeDef->mProject);
|
||||
}
|
||||
}
|
||||
|
||||
auto methodState = mCurMethodState;
|
||||
while (methodState != NULL)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue