aboutsummaryrefslogtreecommitdiffstats
path: root/parser.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2023-02-09 20:15:16 -0500
committerClyne Sullivan <clyne@bitgloo.com>2023-02-09 20:15:16 -0500
commit78507c65c4ab649bbb0655d9485bf2f6e712af5c (patch)
tree4563a821183fd6e11d7efc968ee5f8515db8ed85 /parser.cpp
parent501ca28d509bf6f41ed5797fa68f07e37ab9a294 (diff)
implement if and then
Diffstat (limited to 'parser.cpp')
-rw-r--r--parser.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/parser.cpp b/parser.cpp
index 99cbc8b..19ef34a 100644
--- a/parser.cpp
+++ b/parser.cpp
@@ -39,7 +39,7 @@ ParseStatus Parser::parse(State& state, std::string_view& str)
break;
case Pass::Colon:
state.pass = Pass::None;
- state.compiling = true;
+ state.compiling = true;
state.dict.addDefinition(sub);
break;
case Pass::Constant:
@@ -57,9 +57,9 @@ ParseStatus Parser::parse(State& state, std::string_view& str)
} else {
if (auto i = CoreWords::findi(sub); i >= 0) {
if (state.compiling)
- state.dict.add(i);
- if (!state.compiling || sub.front() == ';')
- CoreWords::run(i, state);
+ state.dict.add(i & ~CoreWords::CoreImmediate);
+ if (!state.compiling || (i & CoreWords::CoreImmediate))
+ CoreWords::run(i & ~CoreWords::CoreImmediate, state);
} else if (auto j = state.dict.find(sub); j > 0) {
auto e = state.dict.getexec(j);