aboutsummaryrefslogtreecommitdiff
path: root/src/parser.hpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2022-02-02 15:28:49 +0000
committergingerBill <bill@gingerbill.org>2022-02-02 15:28:49 +0000
commit78815778ee399b4df1c5f7c44522c792b9dc3e23 (patch)
tree884c8a2a459ff9068daac89a63ced2e160564ea9 /src/parser.hpp
parenta04d849e30da1252e56d29ee18e2a51a5b6cb0d5 (diff)
Add `//+private file` to complement `//+private` (`//+private package`)
Diffstat (limited to 'src/parser.hpp')
-rw-r--r--src/parser.hpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/parser.hpp b/src/parser.hpp
index 656f709e8..0712e83cb 100644
--- a/src/parser.hpp
+++ b/src/parser.hpp
@@ -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 {