aboutsummaryrefslogtreecommitdiff
path: root/src/entity.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2024-01-05 13:38:30 +0000
committergingerBill <bill@gingerbill.org>2024-01-05 13:38:30 +0000
commit2820bbc269bb989052163544f2764bc4287254e4 (patch)
treeb150a2af61c79dca0202609d37a8637084776df0 /src/entity.cpp
parent70c5153471433bea6f3081ea3189613a02f54c6a (diff)
Add `@(entry_point_only)` for procedures
Diffstat (limited to 'src/entity.cpp')
-rw-r--r--src/entity.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/entity.cpp b/src/entity.cpp
index ce27da3f2..d0b3cf139 100644
--- a/src/entity.cpp
+++ b/src/entity.cpp
@@ -250,6 +250,7 @@ struct Entity {
bool is_export : 1;
bool generated_from_polymorphic : 1;
bool target_feature_disabled : 1;
+ bool entry_point_only : 1;
String target_feature;
} Procedure;
struct {