diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-09 20:15:16 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-09 20:15:16 -0500 |
commit | 78507c65c4ab649bbb0655d9485bf2f6e712af5c (patch) | |
tree | 4563a821183fd6e11d7efc968ee5f8515db8ed85 /parser.cpp | |
parent | 501ca28d509bf6f41ed5797fa68f07e37ab9a294 (diff) |
implement if and then
Diffstat (limited to 'parser.cpp')
-rw-r--r-- | parser.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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); |