diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-09 21:54:58 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-09 21:54:58 -0500 |
commit | 18bcd5dd0e283100d25ca44e60f1705f3c028456 (patch) | |
tree | c254e759d7ff8251ad9cf7b8aaa03f86b84ad7d8 /state.hpp | |
parent | 27742595b575c59b1f482e5a72195fdfbf16c5d6 (diff) |
depth and more core.fth words
Diffstat (limited to 'state.hpp')
-rw-r--r-- | state.hpp | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -35,13 +35,15 @@ class State Cell *rsp = rstack - 1; public: - bool compiling = false; Addr ip = 0; Pass pass = Pass::None; Dictionary& dict; constexpr State(Dictionary& d): dict(d) {} + bool compiling() const; + void compiling(bool); + Cell beyondip() const; void pushr(Cell); |