mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-09 20:12:21 +02:00
Fixed typeState issue with exterior nodes
This commit is contained in:
parent
c2894b0397
commit
b09364cd34
1 changed files with 2 additions and 2 deletions
|
@ -3695,11 +3695,11 @@ void BfCompiler::ProcessAutocompleteTempType()
|
||||||
SetAndRestoreValue<BfMethodState*> prevMethodState(module->mCurMethodState, NULL);
|
SetAndRestoreValue<BfMethodState*> prevMethodState(module->mCurMethodState, NULL);
|
||||||
SetAndRestoreValue<BfTypeInstance*> prevTypeInstance(module->mCurTypeInstance, NULL);
|
SetAndRestoreValue<BfTypeInstance*> prevTypeInstance(module->mCurTypeInstance, NULL);
|
||||||
SetAndRestoreValue<BfMethodInstance*> prevMethodInstance(module->mCurMethodInstance, NULL);
|
SetAndRestoreValue<BfMethodInstance*> prevMethodInstance(module->mCurMethodInstance, NULL);
|
||||||
|
SetAndRestoreValue<BfTypeState*> prevTypeState(module->mContext->mCurTypeState, NULL);
|
||||||
|
|
||||||
// >>> VisitExteriorIdentifiers
|
// >>> VisitExteriorIdentifiers
|
||||||
mResolvePassData->mAutoComplete->SetModule(module);
|
mResolvePassData->mAutoComplete->SetModule(module);
|
||||||
{
|
{
|
||||||
SetAndRestoreValue<BfTypeState*> prevTypeState(module->mContext->mCurTypeState, NULL);
|
|
||||||
BP_ZONE("VisitExteriorIdentifiers");
|
BP_ZONE("VisitExteriorIdentifiers");
|
||||||
VisitAutocompleteExteriorIdentifiers();
|
VisitAutocompleteExteriorIdentifiers();
|
||||||
}
|
}
|
||||||
|
@ -3738,7 +3738,7 @@ void BfCompiler::ProcessAutocompleteTempType()
|
||||||
|
|
||||||
BfTypeState typeState;
|
BfTypeState typeState;
|
||||||
typeState.mCurTypeDef = tempTypeDef;
|
typeState.mCurTypeDef = tempTypeDef;
|
||||||
SetAndRestoreValue<BfTypeState*> prevTypeState(module->mContext->mCurTypeState, &typeState);
|
module->mContext->mCurTypeState = &typeState;
|
||||||
|
|
||||||
BfStaticSearch* staticSearch = NULL;
|
BfStaticSearch* staticSearch = NULL;
|
||||||
if (mResolvePassData->mStaticSearchMap.TryAdd(tempTypeDef, NULL, &staticSearch))
|
if (mResolvePassData->mStaticSearchMap.TryAdd(tempTypeDef, NULL, &staticSearch))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue