mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 04:22:20 +02:00
Deferred Import dynamic/static check, fix calling convention
This commit is contained in:
parent
fbb06862b3
commit
42452fe09c
15 changed files with 102 additions and 44 deletions
|
@ -664,8 +664,9 @@ enum BfOptimize : int8
|
|||
enum BfImportKind : int8
|
||||
{
|
||||
BfImportKind_None,
|
||||
BfImportKind_Static,
|
||||
BfImportKind_Dynamic,
|
||||
BfImportKind_Import_Unknown,
|
||||
BfImportKind_Import_Dynamic,
|
||||
BfImportKind_Import_Static,
|
||||
BfImportKind_Export
|
||||
};
|
||||
|
||||
|
@ -758,6 +759,7 @@ public:
|
|||
|
||||
virtual ~BfMethodDef();
|
||||
|
||||
static BfImportKind GetImportKindFromPath(const StringImpl& filePath);
|
||||
bool HasNoThisSplat() { return mIsMutating || mNoSplat; }
|
||||
void Reset();
|
||||
void FreeMembers();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue