mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 12:32:20 +02:00
Merge branch 'master' of https://github.com/beefytech/Beef into FuzzyAutoComplete
This commit is contained in:
parent
c2c7431620
commit
b70745ef1e
48 changed files with 2975 additions and 918 deletions
|
@ -61,7 +61,8 @@ enum BfMethodNameFlags : uint8
|
|||
BfMethodNameFlag_ResolveGenericParamNames = 1,
|
||||
BfMethodNameFlag_OmitTypeName = 2,
|
||||
BfMethodNameFlag_IncludeReturnType = 4,
|
||||
BfMethodNameFlag_OmitParams = 8
|
||||
BfMethodNameFlag_OmitParams = 8,
|
||||
BfMethodNameFlag_IncludeMut = 0x10
|
||||
};
|
||||
|
||||
enum BfGetMethodInstanceFlags : uint16
|
||||
|
@ -1827,6 +1828,7 @@ class BfCeTypeInfo
|
|||
public:
|
||||
Dictionary<int, BfCeTypeEmitEntry> mOnCompileMap;
|
||||
Dictionary<int, BfCeTypeEmitEntry> mTypeIFaceMap;
|
||||
Array<int> mPendingInterfaces;
|
||||
Val128 mHash;
|
||||
bool mFailed;
|
||||
BfCeTypeInfo* mNext;
|
||||
|
@ -2109,6 +2111,7 @@ public:
|
|||
mBoxedBaseType = NULL;
|
||||
mBoxedFlags = BoxedFlags_None;
|
||||
}
|
||||
~BfBoxedType();
|
||||
|
||||
virtual bool IsBoxed() override { return true; }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue