aboutsummaryrefslogtreecommitdiff
path: root/src/parser.hpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2024-03-16 22:12:17 +0000
committergingerBill <bill@gingerbill.org>2024-03-16 22:12:17 +0000
commit3875fb08e839d45d2c855115008857b3134f8337 (patch)
tree42fc7198a9deaf4de2cbfe7a4ff2525a13337e7b /src/parser.hpp
parent04f0fbf23a22dde3b750e27d844df84273dafa87 (diff)
Fix #3284
Diffstat (limited to 'src/parser.hpp')
-rw-r--r--src/parser.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/parser.hpp b/src/parser.hpp
index f410419d4..f5997c4bd 100644
--- a/src/parser.hpp
+++ b/src/parser.hpp
@@ -310,6 +310,8 @@ enum StateFlag : u8 {
enum ViralStateFlag : u8 {
ViralStateFlag_ContainsDeferredProcedure = 1<<0,
+ ViralStateFlag_ContainsOrBreak = 1<<1,
+ ViralStateFlag_ContainsOrReturn = 1<<2,
};