diff options
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); |