aboutsummaryrefslogtreecommitdiffstats
path: root/state.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2023-02-09 21:54:58 -0500
committerClyne Sullivan <clyne@bitgloo.com>2023-02-09 21:54:58 -0500
commit18bcd5dd0e283100d25ca44e60f1705f3c028456 (patch)
treec254e759d7ff8251ad9cf7b8aaa03f86b84ad7d8 /state.cpp
parent27742595b575c59b1f482e5a72195fdfbf16c5d6 (diff)
depth and more core.fth words
Diffstat (limited to 'state.cpp')
-rw-r--r--state.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/state.cpp b/state.cpp
index 0b5c8fe..6165ce4 100644
--- a/state.cpp
+++ b/state.cpp
@@ -20,6 +20,16 @@
#include <iterator>
+bool State::compiling() const
+{
+ return dict.read(Dictionary::Compiling);
+}
+
+void State::compiling(bool yes)
+{
+ dict.write(Dictionary::Compiling, yes);
+}
+
Cell State::beyondip() const
{
return dict.read(ip + 1);