aboutsummaryrefslogtreecommitdiffstats
path: root/state.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'state.hpp')
-rw-r--r--state.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/state.hpp b/state.hpp
index 6311949..e17d324 100644
--- a/state.hpp
+++ b/state.hpp
@@ -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);