about summary refs log tree commit diff stats
path: root/apps/tile/data.mu
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-09-26 22:27:09 -0700
committerKartik Agaram <vc@akkartik.com>2020-09-26 22:27:09 -0700
commit78cfd370e5f834b96700ac0e1e5920879a66c950 (patch)
treef1bb88e00e7df9fee4a5de2ac9810c8aedc38d46 /apps/tile/data.mu
parent62c539d8ac14075880ba03cb887ca98d4899634e (diff)
downloadmu-78cfd370e5f834b96700ac0e1e5920879a66c950.tar.gz
6873
Now saving the subsidiary stack.
Diffstat (limited to 'apps/tile/data.mu')
-rw-r--r--apps/tile/data.mu2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/tile/data.mu b/apps/tile/data.mu
index 9b852a82..6f0f6e48 100644
--- a/apps/tile/data.mu
+++ b/apps/tile/data.mu
@@ -31,6 +31,8 @@ type word {
   scalar-data: (handle gap-buffer)
   text-data: (handle array byte)
   box-data: (handle line)  # recurse
+  # other metadata attached to this word
+  subsidiary-stack: (handle value-stack)  # if this word is a call
   next: (handle word)
   prev: (handle word)
 }