mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 04:22:20 +02:00
Added nullable(T), Result<T> can use null conditionals
This commit is contained in:
parent
336226d686
commit
68bf7bc801
19 changed files with 343 additions and 210 deletions
|
@ -4150,7 +4150,7 @@ void BfCompiler::AddToRebuildTypeList(BfTypeInstance* typeInst, HashSet<BfTypeIn
|
|||
|
||||
bool allowRebuild = ((!typeInst->IsGenericTypeInstance()) ||
|
||||
((typeInst->IsUnspecializedType()) && (!typeInst->IsUnspecializedTypeVariation())));
|
||||
if ((typeInst->IsClosure()) || (typeInst->IsConcreteInterfaceType()) || (typeInst->IsRetTypeType()))
|
||||
if ((typeInst->IsClosure()) || (typeInst->IsConcreteInterfaceType()) || (typeInst->IsModifiedTypeType()))
|
||||
allowRebuild = false;
|
||||
if (allowRebuild)
|
||||
rebuildTypeInstList.Add(typeInst);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue