This commit is contained in:
Kartik K. Agaram 2021-02-26 21:26:09 -08:00
parent f4bf14b338
commit a65ea6e4a7
1 changed files with 5 additions and 0 deletions

View File

@ -93,6 +93,11 @@ fn next-symbol-token in: (addr gap-buffer), out: (addr stream byte), trace: (add
loop
}
trace-higher trace
var stream-storage: (stream byte 0x40)
var stream/esi: (addr stream byte) <- address stream-storage
write stream, "=> "
write-stream stream, out
trace trace, "read", stream
}
fn next-number-token in: (addr gap-buffer), out: (addr stream byte), trace: (addr trace) {