mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-24 00:17:54 +00:00
Add //+private file to complement //+private (//+private package)
This commit is contained in:
+5
-3
@@ -78,9 +78,11 @@ struct ImportedFile {
|
||||
};
|
||||
|
||||
enum AstFileFlag : u32 {
|
||||
AstFile_IsPrivate = 1<<0,
|
||||
AstFile_IsTest = 1<<1,
|
||||
AstFile_IsLazy = 1<<2,
|
||||
AstFile_IsPrivatePkg = 1<<0,
|
||||
AstFile_IsPrivateFile = 1<<1,
|
||||
|
||||
AstFile_IsTest = 1<<3,
|
||||
AstFile_IsLazy = 1<<4,
|
||||
};
|
||||
|
||||
enum AstDelayQueueKind {
|
||||
|
||||
Reference in New Issue
Block a user