aboutsummaryrefslogtreecommitdiff
path: root/src/entity.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2020-02-05 20:18:19 +0000
committergingerBill <bill@gingerbill.org>2020-02-05 20:18:19 +0000
commitb555b0083a58856f661c63fb574722f1fc64fee9 (patch)
treed75a315cd384bb939960bdbc7d7f3a7208c4610d /src/entity.cpp
parent0103cedad7b18d2f8ac2337fd4221e874eb2e1ca (diff)
Slowly add more statements and expressions; Add header file
Diffstat (limited to 'src/entity.cpp')
-rw-r--r--src/entity.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/entity.cpp b/src/entity.cpp
index 8273af3f1..a721c6394 100644
--- a/src/entity.cpp
+++ b/src/entity.cpp
@@ -2,6 +2,7 @@ struct Scope;
struct Checker;
struct Type;
struct DeclInfo;
+struct lbModule;
#define ENTITY_KINDS \
@@ -104,6 +105,8 @@ struct Entity {
Entity * using_parent;
Ast * using_expr;
+ lbModule * code_gen_module;
+
isize order_in_src;
String deprecated_message;