Add //+private file to complement //+private (//+private package)

This commit is contained in:
gingerBill
2022-02-02 15:28:49 +00:00
parent a04d849e30
commit 78815778ee
5 changed files with 32 additions and 11 deletions
+5 -3
View File
@@ -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 {