about summary refs log tree commit diff stats
path: root/shell
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-05-29 16:25:38 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-05-29 16:25:38 -0700
commit4de6f80334fd6f233a3e12e8970dfa3da6d7d5cc (patch)
tree1f06fddba2916a3df652269b5c2b6ba8fc845074 /shell
parent9b131ce02bc58f930bde98220411b639747a7392 (diff)
downloadmu-4de6f80334fd6f233a3e12e8970dfa3da6d7d5cc.tar.gz
.
Diffstat (limited to 'shell')
-rw-r--r--shell/read.mu2
1 files changed, 2 insertions, 0 deletions
diff --git a/shell/read.mu b/shell/read.mu
index 191dd821..f883be21 100644
--- a/shell/read.mu
+++ b/shell/read.mu
@@ -1,4 +1,6 @@
 fn read-cell in: (addr gap-buffer), out: (addr handle cell), trace: (addr trace) {
+  # TODO: we may be able to generate tokens lazily and drop this stream.
+  # Depends on how we implement indent-sensitivity and infix.
   var tokens-storage: (stream cell 0x400)
   var tokens/ecx: (addr stream cell) <- address tokens-storage
   tokenize in, tokens, trace