This commit is contained in:
Kartik Agaram 2021-06-23 13:19:20 -07:00
parent a25e4c1ac2
commit e0b8eddb5b
17 changed files with 6890 additions and 5546 deletions

View File

@ -249,7 +249,7 @@ if ('onhashchange' in window) {
<span id="L190" class="LineNr">190 </span> 5d/pop-to-ebp
<span id="L191" class="LineNr">191 </span> c3/return
<span id="L192" class="LineNr">192 </span>
<span id="L193" class="LineNr">193 </span><span class="subxComment"># helper for later tests</span>
<span id="L193" class="LineNr">193 </span><span class="subxComment"># helper for tests</span>
<span id="L194" class="LineNr">194 </span><span class="subxFunction">check-stream-equal</span>: <span class="subxComment"># f: (addr stream byte), s: (addr array byte), msg: (addr array byte)</span>
<span id="L195" class="LineNr">195 </span> <span class="subxS1Comment"># . prologue</span>
<span id="L196" class="LineNr">196 </span> 55/push-ebp

View File

@ -264,7 +264,7 @@ if ('onhashchange' in window) {
<span id="L208" class="LineNr">208 </span> c3/return
<span id="L209" class="LineNr">209 </span>
<span id="L210" class="LineNr">210 </span><span class="subxComment"># compare all the data in two streams (ignoring the read pointer)</span>
<span id="L211" class="LineNr">211 </span><span class="subxFunction">streams-data-equal?</span>: <span class="subxComment"># f: (addr stream byte), s: (addr array byte) -&gt; result/eax: boolean</span>
<span id="L211" class="LineNr">211 </span><span class="subxFunction">streams-data-equal?</span>: <span class="subxComment"># a: (addr stream byte), b: (addr array byte) -&gt; result/eax: boolean</span>
<span id="L212" class="LineNr">212 </span> <span class="subxComment"># pseudocode:</span>
<span id="L213" class="LineNr">213 </span> <span class="subxComment"># awrite = a-&gt;write</span>
<span id="L214" class="LineNr">214 </span> <span class="subxComment"># if (awrite != b-&gt;write) return false</span>
@ -351,6 +351,24 @@ if ('onhashchange' in window) {
<span id="L295" class="LineNr">295 </span> 89/&lt;- %esp 5/r32/ebp
<span id="L296" class="LineNr">296 </span> 5d/pop-to-ebp
<span id="L297" class="LineNr">297 </span> c3/return
<span id="L298" class="LineNr">298 </span>
<span id="L299" class="LineNr">299 </span><span class="subxComment"># helper for tests</span>
<span id="L300" class="LineNr">300 </span><span class="subxFunction">check-streams-data-equal</span>: <span class="subxComment"># s: (addr stream _), expected: (addr array _), msg: (addr array byte)</span>
<span id="L301" class="LineNr">301 </span> <span class="subxS1Comment"># . prologue</span>
<span id="L302" class="LineNr">302 </span> 55/push-ebp
<span id="L303" class="LineNr">303 </span> 89/&lt;- %ebp 4/r32/esp
<span id="L304" class="LineNr">304 </span> <span class="subxS1Comment"># . save registers</span>
<span id="L305" class="LineNr">305 </span> 50/push-eax
<span id="L306" class="LineNr">306 </span> <span class="subxComment">#</span>
<span id="L307" class="LineNr">307 </span> (<a href='309stream.subx.html#L211'>streams-data-equal?</a> *(ebp+8) *(ebp+0xc)) <span class="subxComment"># =&gt; eax</span>
<span id="L308" class="LineNr">308 </span> (<a href='502test.mu.html#L2'>check-ints-equal</a> %eax 1 *(ebp+0x10))
<span id="L309" class="LineNr">309 </span><span class="Constant">$check-streams-equal:end</span>:
<span id="L310" class="LineNr">310 </span> <span class="subxS1Comment"># . restore registers</span>
<span id="L311" class="LineNr">311 </span> 58/pop-to-eax
<span id="L312" class="LineNr">312 </span> <span class="subxS1Comment"># . epilogue</span>
<span id="L313" class="LineNr">313 </span> 89/&lt;- %esp 5/r32/ebp
<span id="L314" class="LineNr">314 </span> 5d/pop-to-ebp
<span id="L315" class="LineNr">315 </span> c3/return
</pre>
</body>
</html>

129
html/400.mu.html generated
View File

@ -101,71 +101,72 @@ if ('onhashchange' in window) {
<span id="L43" class="LineNr"> 43 </span><span class="PreProc">sig</span> <a href='106stream.subx.html#L20'>clear-stream</a> f: (addr stream _)
<span id="L44" class="LineNr"> 44 </span><span class="PreProc">sig</span> <a href='106stream.subx.html#L59'>rewind-stream</a> f: (addr stream _)
<span id="L45" class="LineNr"> 45 </span><span class="PreProc">sig</span> <a href='109stream-equal.subx.html#L9'>stream-data-equal?</a> f: (addr stream byte), s: (addr array byte)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: boolean
<span id="L46" class="LineNr"> 46 </span><span class="PreProc">sig</span> <a href='309stream.subx.html#L211'>streams-data-equal?</a> f: (addr stream byte), s: (addr stream byte)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: boolean
<span id="L46" class="LineNr"> 46 </span><span class="PreProc">sig</span> <a href='309stream.subx.html#L211'>streams-data-equal?</a> a: (addr stream byte), b: (addr stream byte)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: boolean
<span id="L47" class="LineNr"> 47 </span><span class="PreProc">sig</span> <a href='109stream-equal.subx.html#L194'>check-stream-equal</a> f: (addr stream byte), s: (addr array byte), msg: (addr array byte)
<span id="L48" class="LineNr"> 48 </span><span class="PreProc">sig</span> <a href='109stream-equal.subx.html#L230'>next-stream-line-equal?</a> f: (addr stream byte), s: (addr array byte)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: boolean
<span id="L49" class="LineNr"> 49 </span><span class="PreProc">sig</span> <a href='109stream-equal.subx.html#L565'>check-next-stream-line-equal</a> f: (addr stream byte), s: (addr array byte), msg: (addr array byte)
<span id="L50" class="LineNr"> 50 </span><span class="PreProc">sig</span> <a href='108write.subx.html#L11'>write</a> f: (addr stream byte), s: (addr array byte)
<span id="L51" class="LineNr"> 51 </span><span class="PreProc">sig</span> <a href='108write.subx.html#L138'>try-write</a> f: (addr stream byte), s: (addr array byte)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: boolean
<span id="L52" class="LineNr"> 52 </span><span class="muComment"># probably a bad idea; I definitely want to discourage its use for streams of non-bytes</span>
<span id="L53" class="LineNr"> 53 </span><span class="PreProc">sig</span> <a href='108write.subx.html#L194'>stream-size</a> f: (addr stream byte)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: int
<span id="L54" class="LineNr"> 54 </span><span class="PreProc">sig</span> <a href='108write.subx.html#L176'>space-remaining-in-stream</a> f: (addr stream byte)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: int
<span id="L55" class="LineNr"> 55 </span><span class="PreProc">sig</span> <a href='113write-stream.subx.html#L8'>write-stream</a> f: (addr stream byte), s: (addr stream byte)
<span id="L56" class="LineNr"> 56 </span><span class="PreProc">sig</span> <a href='112read-byte.subx.html#L13'>read-byte</a> s: (addr stream byte)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: byte
<span id="L57" class="LineNr"> 57 </span><span class="PreProc">sig</span> <a href='115write-byte.subx.html#L12'>append-byte</a> f: (addr stream byte), n: int <span class="muComment"># really just a byte, but I want to pass in literal numbers</span>
<span id="L58" class="LineNr"> 58 </span><span class="muComment">#sig to-hex-char in/eax: int -&gt; out/eax: int</span>
<span id="L59" class="LineNr"> 59 </span><span class="PreProc">sig</span> <a href='117write-int-hex.subx.html#L21'>append-byte-hex</a> f: (addr stream byte), n: int <span class="muComment"># really just a byte, but I want to pass in literal numbers</span>
<span id="L60" class="LineNr"> 60 </span><span class="PreProc">sig</span> <a href='117write-int-hex.subx.html#L92'>write-int32-hex</a> f: (addr stream byte), n: int
<span id="L61" class="LineNr"> 61 </span><span class="PreProc">sig</span> <a href='117write-int-hex.subx.html#L123'>write-int32-hex-bits</a> f: (addr stream byte), n: int, bits: int
<span id="L62" class="LineNr"> 62 </span><span class="PreProc">sig</span> <a href='118parse-hex-int.subx.html#L9'>hex-int?</a> in: (addr slice)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: boolean
<span id="L63" class="LineNr"> 63 </span><span class="PreProc">sig</span> <a href='118parse-hex-int.subx.html#L354'>parse-hex-int</a> in: (addr array byte)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: int
<span id="L64" class="LineNr"> 64 </span><span class="PreProc">sig</span> <a href='118parse-hex-int.subx.html#L387'>parse-hex-int-from-slice</a> in: (addr slice)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: int
<span id="L65" class="LineNr"> 65 </span><span class="muComment">#sig parse-hex-int-helper start: (addr byte), end: (addr byte) -&gt; _/eax: int</span>
<span id="L66" class="LineNr"> 66 </span><span class="PreProc">sig</span> <a href='118parse-hex-int.subx.html#L701'>hex-digit?</a> c: byte<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: boolean
<span id="L67" class="LineNr"> 67 </span><span class="muComment">#sig from-hex-char in/eax: byte -&gt; out/eax: nibble</span>
<span id="L68" class="LineNr"> 68 </span><span class="PreProc">sig</span> <a href='311decimal-int.subx.html#L23'>parse-decimal-int</a> in: (addr array byte)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: int
<span id="L69" class="LineNr"> 69 </span><span class="PreProc">sig</span> <a href='311decimal-int.subx.html#L4'>parse-decimal-int-from-slice</a> in: (addr slice)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: int
<span id="L70" class="LineNr"> 70 </span><span class="PreProc">sig</span> <a href='311decimal-int.subx.html#L48'>parse-decimal-int-from-stream</a> in: (addr stream byte)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: int
<span id="L71" class="LineNr"> 71 </span><span class="muComment">#sig parse-decimal-int-helper start: (addr byte), end: (addr byte) -&gt; _/eax: int</span>
<span id="L72" class="LineNr"> 72 </span><span class="PreProc">sig</span> <a href='311decimal-int.subx.html#L312'>decimal-size</a> n: int<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: int
<span id="L73" class="LineNr"> 73 </span><span class="muComment">#sig allocate ad: (addr allocation-descriptor), n: int, out: (addr handle _)</span>
<span id="L74" class="LineNr"> 74 </span><span class="muComment">#sig allocate-raw ad: (addr allocation-descriptor), n: int, out: (addr handle _)</span>
<span id="L75" class="LineNr"> 75 </span><span class="PreProc">sig</span> <a href='120allocate.subx.html#L223'>lookup</a> h: (handle _T)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: (addr _T)
<span id="L76" class="LineNr"> 76 </span><span class="PreProc">sig</span> <a href='120allocate.subx.html#L448'>handle-equal?</a> a: (handle _T), b: (handle _T)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: boolean
<span id="L77" class="LineNr"> 77 </span><span class="PreProc">sig</span> <a href='120allocate.subx.html#L479'>copy-handle</a> src: (handle _T), dest: (addr handle _T)
<span id="L78" class="LineNr"> 78 </span><span class="muComment">#sig allocate-region ad: (addr allocation-descriptor), n: int, out: (addr handle allocation-descriptor)</span>
<span id="L79" class="LineNr"> 79 </span><span class="muComment">#sig allocate-array ad: (addr allocation-descriptor), n: int, out: (addr handle _)</span>
<span id="L80" class="LineNr"> 80 </span><span class="PreProc">sig</span> <a href='120allocate.subx.html#L690'>copy-array</a> ad: (addr allocation-descriptor), src: (addr array _T), out: (addr handle array _T)
<span id="L81" class="LineNr"> 81 </span><span class="muComment">#sig zero-out start: (addr byte), size: int</span>
<span id="L82" class="LineNr"> 82 </span><span class="PreProc">sig</span> <a href='123slice.subx.html#L9'>slice-empty?</a> s: (addr slice)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: boolean
<span id="L83" class="LineNr"> 83 </span><span class="PreProc">sig</span> <a href='123slice.subx.html#L120'>slice-equal?</a> s: (addr slice), p: (addr array byte)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: boolean
<span id="L84" class="LineNr"> 84 </span><span class="PreProc">sig</span> <a href='123slice.subx.html#L487'>slice-starts-with?</a> s: (addr slice), head: (addr array byte)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: boolean
<span id="L85" class="LineNr"> 85 </span><span class="PreProc">sig</span> <a href='123slice.subx.html#L793'>write-slice</a> out: (addr stream byte), s: (addr slice)
<span id="L86" class="LineNr"> 86 </span><span class="muComment"># bad name alert</span>
<span id="L87" class="LineNr"> 87 </span><span class="PreProc">sig</span> <a href='123slice.subx.html#L898'>slice-to-string</a> ad: (addr allocation-descriptor), in: (addr slice), out: (addr handle array byte)
<span id="L88" class="LineNr"> 88 </span><span class="PreProc">sig</span> <a href='126write-int-decimal.subx.html#L8'>write-int32-decimal</a> out: (addr stream byte), n: int
<span id="L89" class="LineNr"> 89 </span><span class="PreProc">sig</span> <a href='126write-int-decimal.subx.html#L296'>decimal-digit?</a> c: grapheme<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: boolean
<span id="L90" class="LineNr"> 90 </span><span class="PreProc">sig</span> <a href='126write-int-decimal.subx.html#L395'>to-decimal-digit</a> in: grapheme<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: int
<span id="L91" class="LineNr"> 91 </span><span class="muComment"># bad name alert</span>
<span id="L92" class="LineNr"> 92 </span><span class="muComment"># next-word really tokenizes</span>
<span id="L93" class="LineNr"> 93 </span><span class="muComment"># next-raw-word really reads whitespace-separated words</span>
<span id="L94" class="LineNr"> 94 </span><span class="PreProc">sig</span> <a href='127next-word.subx.html#L11'>next-word</a> line: (addr stream byte), out: (addr slice) <span class="muComment"># skips '#' comments</span>
<span id="L95" class="LineNr"> 95 </span><span class="PreProc">sig</span> <a href='127next-word.subx.html#L306'>next-raw-word</a> line: (addr stream byte), out: (addr slice) <span class="muComment"># does not skip '#' comments</span>
<span id="L96" class="LineNr"> 96 </span><span class="PreProc">sig</span> <a href='309stream.subx.html#L6'>stream-empty?</a> s: (addr stream _)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: boolean
<span id="L97" class="LineNr"> 97 </span><span class="PreProc">sig</span> <a href='309stream.subx.html#L30'>stream-full?</a> s: (addr stream _)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: boolean
<span id="L98" class="LineNr"> 98 </span><span class="PreProc">sig</span> <a href='310copy-bytes.subx.html#L60'>stream-to-array</a> in: (addr stream _), out: (addr handle array _)
<span id="L99" class="LineNr"> 99 </span><span class="PreProc">sig</span> <a href='310copy-bytes.subx.html#L120'>unquote-stream-to-array</a> in: (addr stream _), out: (addr handle array _)
<span id="L100" class="LineNr">100 </span><span class="PreProc">sig</span> <a href='309stream.subx.html#L154'>stream-first</a> s: (addr stream byte)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: byte
<span id="L101" class="LineNr">101 </span><span class="PreProc">sig</span> <a href='309stream.subx.html#L181'>stream-final</a> s: (addr stream byte)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: byte
<span id="L102" class="LineNr">102 </span>
<span id="L103" class="LineNr">103 </span><span class="muComment">#sig copy-bytes src: (addr byte), dest: (addr byte), n: int</span>
<span id="L104" class="LineNr">104 </span><span class="PreProc">sig</span> <a href='312copy.subx.html#L3'>copy-array-object</a> src: (addr array _), dest-ah: (addr handle array _)
<span id="L105" class="LineNr">105 </span><span class="PreProc">sig</span> <a href='301array-equal.subx.html#L5'>array-equal?</a> a: (addr array int), b: (addr array int)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: boolean
<span id="L106" class="LineNr">106 </span><span class="PreProc">sig</span> <a href='301array-equal.subx.html#L368'>parse-array-of-ints</a> s: (addr array byte), out: (addr handle array int)
<span id="L107" class="LineNr">107 </span><span class="PreProc">sig</span> <a href='311decimal-int.subx.html#L623'>parse-array-of-decimal-ints</a> s: (addr array byte), out: (addr handle array int)
<span id="L108" class="LineNr">108 </span><span class="PreProc">sig</span> <a href='301array-equal.subx.html#L382'>check-array-equal</a> a: (addr array int), expected: (addr string), msg: (addr string)
<span id="L109" class="LineNr">109 </span>
<span id="L110" class="LineNr">110 </span><span class="PreProc">sig</span> <a href='314divide.subx.html#L3'>integer-divide</a> a: int, b: int<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: int, _/<span class="muRegEdx">edx</span>: int
<span id="L48" class="LineNr"> 48 </span><span class="PreProc">sig</span> <a href='309stream.subx.html#L300'>check-streams-data-equal</a> s: (addr stream _), expected: (addr stream _), msg: (addr array byte)
<span id="L49" class="LineNr"> 49 </span><span class="PreProc">sig</span> <a href='109stream-equal.subx.html#L230'>next-stream-line-equal?</a> f: (addr stream byte), s: (addr array byte)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: boolean
<span id="L50" class="LineNr"> 50 </span><span class="PreProc">sig</span> <a href='109stream-equal.subx.html#L565'>check-next-stream-line-equal</a> f: (addr stream byte), s: (addr array byte), msg: (addr array byte)
<span id="L51" class="LineNr"> 51 </span><span class="PreProc">sig</span> <a href='108write.subx.html#L11'>write</a> f: (addr stream byte), s: (addr array byte)
<span id="L52" class="LineNr"> 52 </span><span class="PreProc">sig</span> <a href='108write.subx.html#L138'>try-write</a> f: (addr stream byte), s: (addr array byte)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: boolean
<span id="L53" class="LineNr"> 53 </span><span class="muComment"># probably a bad idea; I definitely want to discourage its use for streams of non-bytes</span>
<span id="L54" class="LineNr"> 54 </span><span class="PreProc">sig</span> <a href='108write.subx.html#L194'>stream-size</a> f: (addr stream byte)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: int
<span id="L55" class="LineNr"> 55 </span><span class="PreProc">sig</span> <a href='108write.subx.html#L176'>space-remaining-in-stream</a> f: (addr stream byte)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: int
<span id="L56" class="LineNr"> 56 </span><span class="PreProc">sig</span> <a href='113write-stream.subx.html#L8'>write-stream</a> f: (addr stream byte), s: (addr stream byte)
<span id="L57" class="LineNr"> 57 </span><span class="PreProc">sig</span> <a href='112read-byte.subx.html#L13'>read-byte</a> s: (addr stream byte)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: byte
<span id="L58" class="LineNr"> 58 </span><span class="PreProc">sig</span> <a href='115write-byte.subx.html#L12'>append-byte</a> f: (addr stream byte), n: int <span class="muComment"># really just a byte, but I want to pass in literal numbers</span>
<span id="L59" class="LineNr"> 59 </span><span class="muComment">#sig to-hex-char in/eax: int -&gt; out/eax: int</span>
<span id="L60" class="LineNr"> 60 </span><span class="PreProc">sig</span> <a href='117write-int-hex.subx.html#L21'>append-byte-hex</a> f: (addr stream byte), n: int <span class="muComment"># really just a byte, but I want to pass in literal numbers</span>
<span id="L61" class="LineNr"> 61 </span><span class="PreProc">sig</span> <a href='117write-int-hex.subx.html#L92'>write-int32-hex</a> f: (addr stream byte), n: int
<span id="L62" class="LineNr"> 62 </span><span class="PreProc">sig</span> <a href='117write-int-hex.subx.html#L123'>write-int32-hex-bits</a> f: (addr stream byte), n: int, bits: int
<span id="L63" class="LineNr"> 63 </span><span class="PreProc">sig</span> <a href='118parse-hex-int.subx.html#L9'>hex-int?</a> in: (addr slice)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: boolean
<span id="L64" class="LineNr"> 64 </span><span class="PreProc">sig</span> <a href='118parse-hex-int.subx.html#L354'>parse-hex-int</a> in: (addr array byte)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: int
<span id="L65" class="LineNr"> 65 </span><span class="PreProc">sig</span> <a href='118parse-hex-int.subx.html#L387'>parse-hex-int-from-slice</a> in: (addr slice)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: int
<span id="L66" class="LineNr"> 66 </span><span class="muComment">#sig parse-hex-int-helper start: (addr byte), end: (addr byte) -&gt; _/eax: int</span>
<span id="L67" class="LineNr"> 67 </span><span class="PreProc">sig</span> <a href='118parse-hex-int.subx.html#L701'>hex-digit?</a> c: byte<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: boolean
<span id="L68" class="LineNr"> 68 </span><span class="muComment">#sig from-hex-char in/eax: byte -&gt; out/eax: nibble</span>
<span id="L69" class="LineNr"> 69 </span><span class="PreProc">sig</span> <a href='311decimal-int.subx.html#L23'>parse-decimal-int</a> in: (addr array byte)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: int
<span id="L70" class="LineNr"> 70 </span><span class="PreProc">sig</span> <a href='311decimal-int.subx.html#L4'>parse-decimal-int-from-slice</a> in: (addr slice)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: int
<span id="L71" class="LineNr"> 71 </span><span class="PreProc">sig</span> <a href='311decimal-int.subx.html#L48'>parse-decimal-int-from-stream</a> in: (addr stream byte)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: int
<span id="L72" class="LineNr"> 72 </span><span class="muComment">#sig parse-decimal-int-helper start: (addr byte), end: (addr byte) -&gt; _/eax: int</span>
<span id="L73" class="LineNr"> 73 </span><span class="PreProc">sig</span> <a href='311decimal-int.subx.html#L312'>decimal-size</a> n: int<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: int
<span id="L74" class="LineNr"> 74 </span><span class="muComment">#sig allocate ad: (addr allocation-descriptor), n: int, out: (addr handle _)</span>
<span id="L75" class="LineNr"> 75 </span><span class="muComment">#sig allocate-raw ad: (addr allocation-descriptor), n: int, out: (addr handle _)</span>
<span id="L76" class="LineNr"> 76 </span><span class="PreProc">sig</span> <a href='120allocate.subx.html#L223'>lookup</a> h: (handle _T)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: (addr _T)
<span id="L77" class="LineNr"> 77 </span><span class="PreProc">sig</span> <a href='120allocate.subx.html#L448'>handle-equal?</a> a: (handle _T), b: (handle _T)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: boolean
<span id="L78" class="LineNr"> 78 </span><span class="PreProc">sig</span> <a href='120allocate.subx.html#L479'>copy-handle</a> src: (handle _T), dest: (addr handle _T)
<span id="L79" class="LineNr"> 79 </span><span class="muComment">#sig allocate-region ad: (addr allocation-descriptor), n: int, out: (addr handle allocation-descriptor)</span>
<span id="L80" class="LineNr"> 80 </span><span class="muComment">#sig allocate-array ad: (addr allocation-descriptor), n: int, out: (addr handle _)</span>
<span id="L81" class="LineNr"> 81 </span><span class="PreProc">sig</span> <a href='120allocate.subx.html#L690'>copy-array</a> ad: (addr allocation-descriptor), src: (addr array _T), out: (addr handle array _T)
<span id="L82" class="LineNr"> 82 </span><span class="muComment">#sig zero-out start: (addr byte), size: int</span>
<span id="L83" class="LineNr"> 83 </span><span class="PreProc">sig</span> <a href='123slice.subx.html#L9'>slice-empty?</a> s: (addr slice)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: boolean
<span id="L84" class="LineNr"> 84 </span><span class="PreProc">sig</span> <a href='123slice.subx.html#L120'>slice-equal?</a> s: (addr slice), p: (addr array byte)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: boolean
<span id="L85" class="LineNr"> 85 </span><span class="PreProc">sig</span> <a href='123slice.subx.html#L487'>slice-starts-with?</a> s: (addr slice), head: (addr array byte)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: boolean
<span id="L86" class="LineNr"> 86 </span><span class="PreProc">sig</span> <a href='123slice.subx.html#L793'>write-slice</a> out: (addr stream byte), s: (addr slice)
<span id="L87" class="LineNr"> 87 </span><span class="muComment"># bad name alert</span>
<span id="L88" class="LineNr"> 88 </span><span class="PreProc">sig</span> <a href='123slice.subx.html#L898'>slice-to-string</a> ad: (addr allocation-descriptor), in: (addr slice), out: (addr handle array byte)
<span id="L89" class="LineNr"> 89 </span><span class="PreProc">sig</span> <a href='126write-int-decimal.subx.html#L8'>write-int32-decimal</a> out: (addr stream byte), n: int
<span id="L90" class="LineNr"> 90 </span><span class="PreProc">sig</span> <a href='126write-int-decimal.subx.html#L296'>decimal-digit?</a> c: grapheme<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: boolean
<span id="L91" class="LineNr"> 91 </span><span class="PreProc">sig</span> <a href='126write-int-decimal.subx.html#L395'>to-decimal-digit</a> in: grapheme<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: int
<span id="L92" class="LineNr"> 92 </span><span class="muComment"># bad name alert</span>
<span id="L93" class="LineNr"> 93 </span><span class="muComment"># next-word really tokenizes</span>
<span id="L94" class="LineNr"> 94 </span><span class="muComment"># next-raw-word really reads whitespace-separated words</span>
<span id="L95" class="LineNr"> 95 </span><span class="PreProc">sig</span> <a href='127next-word.subx.html#L11'>next-word</a> line: (addr stream byte), out: (addr slice) <span class="muComment"># skips '#' comments</span>
<span id="L96" class="LineNr"> 96 </span><span class="PreProc">sig</span> <a href='127next-word.subx.html#L306'>next-raw-word</a> line: (addr stream byte), out: (addr slice) <span class="muComment"># does not skip '#' comments</span>
<span id="L97" class="LineNr"> 97 </span><span class="PreProc">sig</span> <a href='309stream.subx.html#L6'>stream-empty?</a> s: (addr stream _)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: boolean
<span id="L98" class="LineNr"> 98 </span><span class="PreProc">sig</span> <a href='309stream.subx.html#L30'>stream-full?</a> s: (addr stream _)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: boolean
<span id="L99" class="LineNr"> 99 </span><span class="PreProc">sig</span> <a href='310copy-bytes.subx.html#L60'>stream-to-array</a> in: (addr stream _), out: (addr handle array _)
<span id="L100" class="LineNr">100 </span><span class="PreProc">sig</span> <a href='310copy-bytes.subx.html#L120'>unquote-stream-to-array</a> in: (addr stream _), out: (addr handle array _)
<span id="L101" class="LineNr">101 </span><span class="PreProc">sig</span> <a href='309stream.subx.html#L154'>stream-first</a> s: (addr stream byte)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: byte
<span id="L102" class="LineNr">102 </span><span class="PreProc">sig</span> <a href='309stream.subx.html#L181'>stream-final</a> s: (addr stream byte)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: byte
<span id="L103" class="LineNr">103 </span>
<span id="L104" class="LineNr">104 </span><span class="muComment">#sig copy-bytes src: (addr byte), dest: (addr byte), n: int</span>
<span id="L105" class="LineNr">105 </span><span class="PreProc">sig</span> <a href='312copy.subx.html#L3'>copy-array-object</a> src: (addr array _), dest-ah: (addr handle array _)
<span id="L106" class="LineNr">106 </span><span class="PreProc">sig</span> <a href='301array-equal.subx.html#L5'>array-equal?</a> a: (addr array int), b: (addr array int)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: boolean
<span id="L107" class="LineNr">107 </span><span class="PreProc">sig</span> <a href='301array-equal.subx.html#L368'>parse-array-of-ints</a> s: (addr array byte), out: (addr handle array int)
<span id="L108" class="LineNr">108 </span><span class="PreProc">sig</span> <a href='311decimal-int.subx.html#L623'>parse-array-of-decimal-ints</a> s: (addr array byte), out: (addr handle array int)
<span id="L109" class="LineNr">109 </span><span class="PreProc">sig</span> <a href='301array-equal.subx.html#L382'>check-array-equal</a> a: (addr array int), expected: (addr string), msg: (addr string)
<span id="L110" class="LineNr">110 </span>
<span id="L111" class="LineNr">111 </span><span class="PreProc">sig</span> <a href='314divide.subx.html#L3'>integer-divide</a> a: int, b: int<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: int, _/<span class="muRegEdx">edx</span>: int
</pre>
</body>
</html>

View File

@ -404,7 +404,7 @@ if ('onhashchange' in window) {
<span id="L338" class="LineNr"> 338 </span> <span class="muComment"># otherwise process like a regular gap-buffer</span>
<span id="L339" class="LineNr"> 339 </span> <span class="PreProc">var</span> partial-global-name-ah/<span class="muRegEax">eax</span>: (addr handle <a href='gap-buffer.mu.html#L3'>gap-buffer</a>) <span class="Special">&lt;-</span> get self, partial-global-name
<span id="L340" class="LineNr"> 340 </span> <span class="PreProc">var</span> partial-global-name/<span class="muRegEax">eax</span>: (addr <a href='gap-buffer.mu.html#L3'>gap-buffer</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *partial-global-name-ah
<span id="L341" class="LineNr"> 341 </span> <a href='gap-buffer.mu.html#L1206'>edit-gap-buffer</a> partial-global-name, key
<span id="L341" class="LineNr"> 341 </span> <a href='gap-buffer.mu.html#L1204'>edit-gap-buffer</a> partial-global-name, key
<span id="L342" class="LineNr"> 342 </span> <span class="PreProc">return</span>
<span id="L343" class="LineNr"> 343 </span> <span class="Delimiter">}</span>
<span id="L344" class="LineNr"> 344 </span> <span class="muComment"># ctrl-g: go to a global (or the repl)</span>
@ -1042,7 +1042,7 @@ if ('onhashchange' in window) {
<span id="L976" class="LineNr"> 976 </span> <span class="PreProc">var</span> globals-cell-storage: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L977" class="LineNr"> 977 </span> <span class="PreProc">var</span> globals-cell-ah/<span class="muRegEdx">edx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address globals-cell-storage
<span id="L978" class="LineNr"> 978 </span> <a href='trace.mu.html#L80'>clear-trace</a> trace
<span id="L979" class="LineNr"> 979 </span> <a href='evaluate.mu.html#L820'>lookup-symbol</a> globals-literal, globals-cell-ah, *initial-root, <span class="Constant">0</span>/no-globals, trace, <span class="Constant">0</span>/no-screen, <span class="Constant">0</span>/no-keyboard
<span id="L979" class="LineNr"> 979 </span> <a href='evaluate.mu.html#L868'>lookup-symbol</a> globals-literal, globals-cell-ah, *initial-root, <span class="Constant">0</span>/no-globals, trace, <span class="Constant">0</span>/no-screen, <span class="Constant">0</span>/no-keyboard
<span id="L980" class="LineNr"> 980 </span> <span class="PreProc">var</span> globals-cell/<span class="muRegEax">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *globals-cell-ah
<span id="L981" class="LineNr"> 981 </span> <span class="Delimiter">{</span>
<span id="L982" class="LineNr"> 982 </span> compare globals-cell, <span class="Constant">0</span>
@ -1059,19 +1059,19 @@ if ('onhashchange' in window) {
<span id="L993" class="LineNr"> 993 </span> <span class="PreProc">var</span> sandbox-cell-storage: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L994" class="LineNr"> 994 </span> <span class="PreProc">var</span> sandbox-cell-ah/<span class="muRegEdx">edx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address sandbox-cell-storage
<span id="L995" class="LineNr"> 995 </span> <a href='trace.mu.html#L80'>clear-trace</a> trace
<span id="L996" class="LineNr"> 996 </span> <a href='evaluate.mu.html#L820'>lookup-symbol</a> sandbox-literal, sandbox-cell-ah, *initial-root, <span class="Constant">0</span>/no-globals, trace, <span class="Constant">0</span>/no-screen, <span class="Constant">0</span>/no-keyboard
<span id="L996" class="LineNr"> 996 </span> <a href='evaluate.mu.html#L868'>lookup-symbol</a> sandbox-literal, sandbox-cell-ah, *initial-root, <span class="Constant">0</span>/no-globals, trace, <span class="Constant">0</span>/no-screen, <span class="Constant">0</span>/no-keyboard
<span id="L997" class="LineNr"> 997 </span> <span class="PreProc">var</span> sandbox-cell/<span class="muRegEax">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *sandbox-cell-ah
<span id="L998" class="LineNr"> 998 </span> <span class="Delimiter">{</span>
<span id="L999" class="LineNr"> 999 </span> compare sandbox-cell, <span class="Constant">0</span>
<span id="L1000" class="LineNr">1000 </span> <span class="PreProc">break-if-=</span>
<span id="L1001" class="LineNr">1001 </span> <span class="muComment"># print: cell -&gt; stream</span>
<span id="L1002" class="LineNr">1002 </span> <a href='trace.mu.html#L80'>clear-trace</a> trace
<span id="L1003" class="LineNr">1003 </span> <a href='print.mu.html#L7'>print-cell</a> sandbox-cell-ah, s, trace
<span id="L1001" class="LineNr">1001 </span> <span class="PreProc">var</span> sandbox-data-ah/<span class="muRegEax">eax</span>: (addr handle stream byte) <span class="Special">&lt;-</span> get sandbox-cell, text-data
<span id="L1002" class="LineNr">1002 </span> <span class="PreProc">var</span> _sandbox-data/<span class="muRegEax">eax</span>: (addr stream byte) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *sandbox-data-ah
<span id="L1003" class="LineNr">1003 </span> <span class="PreProc">var</span> sandbox-data/<span class="muRegEcx">ecx</span>: (addr stream byte) <span class="Special">&lt;-</span> copy _sandbox-data
<span id="L1004" class="LineNr">1004 </span> <span class="muComment"># stream -&gt; gap-buffer</span>
<span id="L1005" class="LineNr">1005 </span> <span class="PreProc">var</span> <a href='sandbox.mu.html#L1'>sandbox</a>/<span class="muRegEax">eax</span>: (addr <a href='sandbox.mu.html#L1'>sandbox</a>) <span class="Special">&lt;-</span> get self, <a href='sandbox.mu.html#L1'>sandbox</a>
<span id="L1006" class="LineNr">1006 </span> <span class="PreProc">var</span> data-ah/<span class="muRegEax">eax</span>: (addr handle <a href='gap-buffer.mu.html#L3'>gap-buffer</a>) <span class="Special">&lt;-</span> get <a href='sandbox.mu.html#L1'>sandbox</a>, data
<span id="L1007" class="LineNr">1007 </span> <span class="PreProc">var</span> data/<span class="muRegEax">eax</span>: (addr <a href='gap-buffer.mu.html#L3'>gap-buffer</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *data-ah
<span id="L1008" class="LineNr">1008 </span> <a href='gap-buffer.mu.html#L68'>load-gap-buffer-from-stream</a> data, s
<span id="L1008" class="LineNr">1008 </span> <a href='gap-buffer.mu.html#L68'>load-gap-buffer-from-stream</a> data, sandbox-data
<span id="L1009" class="LineNr">1009 </span> <span class="Delimiter">}</span>
<span id="L1010" class="LineNr">1010 </span><span class="Delimiter">}</span>
<span id="L1011" class="LineNr">1011 </span>

File diff suppressed because it is too large Load Diff

View File

@ -140,7 +140,7 @@ if ('onhashchange' in window) {
<span id="L75" class="LineNr"> 75 </span> compare key, <span class="Constant">0</span>/null
<span id="L76" class="LineNr"> 76 </span> <span class="PreProc">break-if-=</span>
<span id="L77" class="LineNr"> 77 </span> <span class="PreProc">var</span> g/<span class="muRegEax">eax</span>: grapheme <span class="Special">&lt;-</span> copy key
<span id="L78" class="LineNr"> 78 </span> <a href='gap-buffer.mu.html#L1206'>edit-gap-buffer</a> self, g
<span id="L78" class="LineNr"> 78 </span> <a href='gap-buffer.mu.html#L1204'>edit-gap-buffer</a> self, g
<span id="L79" class="LineNr"> 79 </span> <span class="PreProc">loop</span>
<span id="L80" class="LineNr"> 80 </span> <span class="Delimiter">}</span>
<span id="L81" class="LineNr"> 81 </span><span class="Delimiter">}</span>
@ -1252,7 +1252,7 @@ if ('onhashchange' in window) {
<span id="L1187" class="LineNr">1187 </span> <a href='../502test.mu.html#L2'>check-ints-equal</a> x, <span class="Constant">0</span>/nul, <span class="Constant">&quot;F - <a href='gap-buffer.mu.html#L1140'>test-read-from-gap-buffer</a>/right-4&quot;</span>
<span id="L1188" class="LineNr">1188 </span><span class="Delimiter">}</span>
<span id="L1189" class="LineNr">1189 </span>
<span id="L1190" class="LineNr">1190 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='gap-buffer.mu.html#L1190'>skip-whitespace-from-gap-buffer</a></span> self: (addr <a href='gap-buffer.mu.html#L3'>gap-buffer</a>) <span class="Delimiter">{</span>
<span id="L1190" class="LineNr">1190 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='gap-buffer.mu.html#L1190'>skip-spaces-from-gap-buffer</a></span> self: (addr <a href='gap-buffer.mu.html#L3'>gap-buffer</a>) <span class="Delimiter">{</span>
<span id="L1191" class="LineNr">1191 </span> <span class="PreProc">var</span> done?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L1023'>gap-buffer-scan-done?</a> self
<span id="L1192" class="LineNr">1192 </span> compare done?, <span class="Constant">0</span>/false
<span id="L1193" class="LineNr">1193 </span> <span class="PreProc">break-if-!=</span>
@ -1260,281 +1260,279 @@ if ('onhashchange' in window) {
<span id="L1195" class="LineNr">1195 </span> <span class="Delimiter">{</span>
<span id="L1196" class="LineNr">1196 </span> compare g, <span class="Constant">0x20</span>/space
<span id="L1197" class="LineNr">1197 </span> <span class="PreProc">break-if-=</span>
<span id="L1198" class="LineNr">1198 </span> compare g, <span class="Constant">0xa</span>/newline
<span id="L1199" class="LineNr">1199 </span> <span class="PreProc">break-if-=</span>
<span id="L1200" class="LineNr">1200 </span> <span class="PreProc">return</span>
<span id="L1201" class="LineNr">1201 </span> <span class="Delimiter">}</span>
<span id="L1202" class="LineNr">1202 </span> g <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L1083'>read-from-gap-buffer</a> self
<span id="L1203" class="LineNr">1203 </span> <span class="PreProc">loop</span>
<span id="L1204" class="LineNr">1204 </span><span class="Delimiter">}</span>
<span id="L1205" class="LineNr">1205 </span>
<span id="L1206" class="LineNr">1206 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='gap-buffer.mu.html#L1206'>edit-gap-buffer</a></span> self: (addr <a href='gap-buffer.mu.html#L3'>gap-buffer</a>), key: grapheme <span class="Delimiter">{</span>
<span id="L1207" class="LineNr">1207 </span> <span class="PreProc">var</span> g/<span class="muRegEdx">edx</span>: grapheme <span class="Special">&lt;-</span> copy key
<span id="L1208" class="LineNr">1208 </span> <span class="Delimiter">{</span>
<span id="L1209" class="LineNr">1209 </span> compare g, <span class="Constant">8</span>/backspace
<span id="L1210" class="LineNr">1210 </span> <span class="PreProc">break-if-!=</span>
<span id="L1211" class="LineNr">1211 </span> <a href='gap-buffer.mu.html#L566'>delete-before-gap</a> self
<span id="L1212" class="LineNr">1212 </span> <span class="PreProc">return</span>
<span id="L1213" class="LineNr">1213 </span> <span class="Delimiter">}</span>
<span id="L1214" class="LineNr">1214 </span> <span class="Delimiter">{</span>
<span id="L1215" class="LineNr">1215 </span> compare g, <span class="Constant">0x80</span>/left-arrow
<span id="L1216" class="LineNr">1216 </span> <span class="PreProc">break-if-!=</span>
<span id="L1217" class="LineNr">1217 </span> <span class="PreProc">var</span> dummy/<span class="muRegEax">eax</span>: grapheme <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L496'>gap-left</a> self
<span id="L1218" class="LineNr">1218 </span> <span class="PreProc">return</span>
<span id="L1219" class="LineNr">1219 </span> <span class="Delimiter">}</span>
<span id="L1220" class="LineNr">1220 </span> <span class="Delimiter">{</span>
<span id="L1221" class="LineNr">1221 </span> compare g, <span class="Constant">0x83</span>/right-arrow
<span id="L1222" class="LineNr">1222 </span> <span class="PreProc">break-if-!=</span>
<span id="L1223" class="LineNr">1223 </span> <span class="PreProc">var</span> dummy/<span class="muRegEax">eax</span>: grapheme <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L482'>gap-right</a> self
<span id="L1224" class="LineNr">1224 </span> <span class="PreProc">return</span>
<span id="L1225" class="LineNr">1225 </span> <span class="Delimiter">}</span>
<span id="L1226" class="LineNr">1226 </span> <span class="Delimiter">{</span>
<span id="L1227" class="LineNr">1227 </span> compare g, <span class="Constant">6</span>/ctrl-f
<span id="L1228" class="LineNr">1228 </span> <span class="PreProc">break-if-!=</span>
<span id="L1229" class="LineNr">1229 </span> <a href='gap-buffer.mu.html#L1280'>gap-to-start-of-next-word</a> self
<span id="L1230" class="LineNr">1230 </span> <span class="PreProc">return</span>
<span id="L1231" class="LineNr">1231 </span> <span class="Delimiter">}</span>
<span id="L1232" class="LineNr">1232 </span> <span class="Delimiter">{</span>
<span id="L1233" class="LineNr">1233 </span> compare g, <span class="Constant">2</span>/ctrl-b
<span id="L1234" class="LineNr">1234 </span> <span class="PreProc">break-if-!=</span>
<span id="L1235" class="LineNr">1235 </span> <a href='gap-buffer.mu.html#L1307'>gap-to-end-of-previous-word</a> self
<span id="L1236" class="LineNr">1236 </span> <span class="PreProc">return</span>
<span id="L1237" class="LineNr">1237 </span> <span class="Delimiter">}</span>
<span id="L1238" class="LineNr">1238 </span> <span class="Delimiter">{</span>
<span id="L1239" class="LineNr">1239 </span> compare g, <span class="Constant">1</span>/ctrl-a
<span id="L1240" class="LineNr">1240 </span> <span class="PreProc">break-if-!=</span>
<span id="L1241" class="LineNr">1241 </span> <a href='gap-buffer.mu.html#L1334'>gap-to-previous-start-of-line</a> self
<span id="L1242" class="LineNr">1242 </span> <span class="PreProc">return</span>
<span id="L1243" class="LineNr">1243 </span> <span class="Delimiter">}</span>
<span id="L1244" class="LineNr">1244 </span> <span class="Delimiter">{</span>
<span id="L1245" class="LineNr">1245 </span> compare g, <span class="Constant">5</span>/ctrl-e
<span id="L1246" class="LineNr">1246 </span> <span class="PreProc">break-if-!=</span>
<span id="L1247" class="LineNr">1247 </span> <a href='gap-buffer.mu.html#L1355'>gap-to-next-end-of-line</a> self
<span id="L1248" class="LineNr">1248 </span> <span class="PreProc">return</span>
<span id="L1249" class="LineNr">1249 </span> <span class="Delimiter">}</span>
<span id="L1250" class="LineNr">1250 </span> <span class="Delimiter">{</span>
<span id="L1251" class="LineNr">1251 </span> compare g, <span class="Constant">0x81</span>/down-arrow
<span id="L1252" class="LineNr">1252 </span> <span class="PreProc">break-if-!=</span>
<span id="L1253" class="LineNr">1253 </span> <a href='gap-buffer.mu.html#L1403'>gap-down</a> self
<span id="L1254" class="LineNr">1254 </span> <span class="PreProc">return</span>
<span id="L1255" class="LineNr">1255 </span> <span class="Delimiter">}</span>
<span id="L1256" class="LineNr">1256 </span> <span class="Delimiter">{</span>
<span id="L1257" class="LineNr">1257 </span> compare g, <span class="Constant">0x82</span>/up-arrow
<span id="L1258" class="LineNr">1258 </span> <span class="PreProc">break-if-!=</span>
<span id="L1259" class="LineNr">1259 </span> <a href='gap-buffer.mu.html#L1376'>gap-up</a> self
<span id="L1260" class="LineNr">1260 </span> <span class="PreProc">return</span>
<span id="L1261" class="LineNr">1261 </span> <span class="Delimiter">}</span>
<span id="L1262" class="LineNr">1262 </span> <span class="Delimiter">{</span>
<span id="L1263" class="LineNr">1263 </span> compare g, <span class="Constant">0x15</span>/ctrl-u
<span id="L1264" class="LineNr">1264 </span> <span class="PreProc">break-if-!=</span>
<span id="L1265" class="LineNr">1265 </span> <a href='gap-buffer.mu.html#L19'>clear-gap-buffer</a> self
<span id="L1266" class="LineNr">1266 </span> <span class="PreProc">return</span>
<span id="L1267" class="LineNr">1267 </span> <span class="Delimiter">}</span>
<span id="L1268" class="LineNr">1268 </span> <span class="Delimiter">{</span>
<span id="L1269" class="LineNr">1269 </span> compare g, <span class="Constant">9</span>/tab
<span id="L1270" class="LineNr">1270 </span> <span class="PreProc">break-if-!=</span>
<span id="L1271" class="LineNr">1271 </span> <span class="muComment"># tab = 2 spaces</span>
<span id="L1272" class="LineNr">1272 </span> <a href='gap-buffer.mu.html#L447'>add-code-point-at-gap</a> self, <span class="Constant">0x20</span>/space
<span id="L1273" class="LineNr">1273 </span> <a href='gap-buffer.mu.html#L447'>add-code-point-at-gap</a> self, <span class="Constant">0x20</span>/space
<span id="L1274" class="LineNr">1274 </span> <span class="PreProc">return</span>
<span id="L1275" class="LineNr">1275 </span> <span class="Delimiter">}</span>
<span id="L1276" class="LineNr">1276 </span> <span class="muComment"># default: insert character</span>
<span id="L1277" class="LineNr">1277 </span> <a href='gap-buffer.mu.html#L441'>add-grapheme-at-gap</a> self, g
<span id="L1278" class="LineNr">1278 </span><span class="Delimiter">}</span>
<span id="L1279" class="LineNr">1279 </span>
<span id="L1280" class="LineNr">1280 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='gap-buffer.mu.html#L1280'>gap-to-start-of-next-word</a></span> self: (addr <a href='gap-buffer.mu.html#L3'>gap-buffer</a>) <span class="Delimiter">{</span>
<span id="L1281" class="LineNr">1281 </span> <span class="PreProc">var</span> curr/<span class="muRegEax">eax</span>: grapheme <span class="Special">&lt;-</span> copy <span class="Constant">0</span>
<span id="L1282" class="LineNr">1282 </span> <span class="muComment"># skip to next space</span>
<span id="L1283" class="LineNr">1283 </span> <span class="Delimiter">{</span>
<span id="L1284" class="LineNr">1284 </span> curr <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L482'>gap-right</a> self
<span id="L1285" class="LineNr">1285 </span> compare curr, <span class="Constant">-1</span>
<span id="L1198" class="LineNr">1198 </span> <span class="PreProc">return</span>
<span id="L1199" class="LineNr">1199 </span> <span class="Delimiter">}</span>
<span id="L1200" class="LineNr">1200 </span> g <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L1083'>read-from-gap-buffer</a> self
<span id="L1201" class="LineNr">1201 </span> <span class="PreProc">loop</span>
<span id="L1202" class="LineNr">1202 </span><span class="Delimiter">}</span>
<span id="L1203" class="LineNr">1203 </span>
<span id="L1204" class="LineNr">1204 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='gap-buffer.mu.html#L1204'>edit-gap-buffer</a></span> self: (addr <a href='gap-buffer.mu.html#L3'>gap-buffer</a>), key: grapheme <span class="Delimiter">{</span>
<span id="L1205" class="LineNr">1205 </span> <span class="PreProc">var</span> g/<span class="muRegEdx">edx</span>: grapheme <span class="Special">&lt;-</span> copy key
<span id="L1206" class="LineNr">1206 </span> <span class="Delimiter">{</span>
<span id="L1207" class="LineNr">1207 </span> compare g, <span class="Constant">8</span>/backspace
<span id="L1208" class="LineNr">1208 </span> <span class="PreProc">break-if-!=</span>
<span id="L1209" class="LineNr">1209 </span> <a href='gap-buffer.mu.html#L566'>delete-before-gap</a> self
<span id="L1210" class="LineNr">1210 </span> <span class="PreProc">return</span>
<span id="L1211" class="LineNr">1211 </span> <span class="Delimiter">}</span>
<span id="L1212" class="LineNr">1212 </span> <span class="Delimiter">{</span>
<span id="L1213" class="LineNr">1213 </span> compare g, <span class="Constant">0x80</span>/left-arrow
<span id="L1214" class="LineNr">1214 </span> <span class="PreProc">break-if-!=</span>
<span id="L1215" class="LineNr">1215 </span> <span class="PreProc">var</span> dummy/<span class="muRegEax">eax</span>: grapheme <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L496'>gap-left</a> self
<span id="L1216" class="LineNr">1216 </span> <span class="PreProc">return</span>
<span id="L1217" class="LineNr">1217 </span> <span class="Delimiter">}</span>
<span id="L1218" class="LineNr">1218 </span> <span class="Delimiter">{</span>
<span id="L1219" class="LineNr">1219 </span> compare g, <span class="Constant">0x83</span>/right-arrow
<span id="L1220" class="LineNr">1220 </span> <span class="PreProc">break-if-!=</span>
<span id="L1221" class="LineNr">1221 </span> <span class="PreProc">var</span> dummy/<span class="muRegEax">eax</span>: grapheme <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L482'>gap-right</a> self
<span id="L1222" class="LineNr">1222 </span> <span class="PreProc">return</span>
<span id="L1223" class="LineNr">1223 </span> <span class="Delimiter">}</span>
<span id="L1224" class="LineNr">1224 </span> <span class="Delimiter">{</span>
<span id="L1225" class="LineNr">1225 </span> compare g, <span class="Constant">6</span>/ctrl-f
<span id="L1226" class="LineNr">1226 </span> <span class="PreProc">break-if-!=</span>
<span id="L1227" class="LineNr">1227 </span> <a href='gap-buffer.mu.html#L1278'>gap-to-start-of-next-word</a> self
<span id="L1228" class="LineNr">1228 </span> <span class="PreProc">return</span>
<span id="L1229" class="LineNr">1229 </span> <span class="Delimiter">}</span>
<span id="L1230" class="LineNr">1230 </span> <span class="Delimiter">{</span>
<span id="L1231" class="LineNr">1231 </span> compare g, <span class="Constant">2</span>/ctrl-b
<span id="L1232" class="LineNr">1232 </span> <span class="PreProc">break-if-!=</span>
<span id="L1233" class="LineNr">1233 </span> <a href='gap-buffer.mu.html#L1305'>gap-to-end-of-previous-word</a> self
<span id="L1234" class="LineNr">1234 </span> <span class="PreProc">return</span>
<span id="L1235" class="LineNr">1235 </span> <span class="Delimiter">}</span>
<span id="L1236" class="LineNr">1236 </span> <span class="Delimiter">{</span>
<span id="L1237" class="LineNr">1237 </span> compare g, <span class="Constant">1</span>/ctrl-a
<span id="L1238" class="LineNr">1238 </span> <span class="PreProc">break-if-!=</span>
<span id="L1239" class="LineNr">1239 </span> <a href='gap-buffer.mu.html#L1332'>gap-to-previous-start-of-line</a> self
<span id="L1240" class="LineNr">1240 </span> <span class="PreProc">return</span>
<span id="L1241" class="LineNr">1241 </span> <span class="Delimiter">}</span>
<span id="L1242" class="LineNr">1242 </span> <span class="Delimiter">{</span>
<span id="L1243" class="LineNr">1243 </span> compare g, <span class="Constant">5</span>/ctrl-e
<span id="L1244" class="LineNr">1244 </span> <span class="PreProc">break-if-!=</span>
<span id="L1245" class="LineNr">1245 </span> <a href='gap-buffer.mu.html#L1353'>gap-to-next-end-of-line</a> self
<span id="L1246" class="LineNr">1246 </span> <span class="PreProc">return</span>
<span id="L1247" class="LineNr">1247 </span> <span class="Delimiter">}</span>
<span id="L1248" class="LineNr">1248 </span> <span class="Delimiter">{</span>
<span id="L1249" class="LineNr">1249 </span> compare g, <span class="Constant">0x81</span>/down-arrow
<span id="L1250" class="LineNr">1250 </span> <span class="PreProc">break-if-!=</span>
<span id="L1251" class="LineNr">1251 </span> <a href='gap-buffer.mu.html#L1401'>gap-down</a> self
<span id="L1252" class="LineNr">1252 </span> <span class="PreProc">return</span>
<span id="L1253" class="LineNr">1253 </span> <span class="Delimiter">}</span>
<span id="L1254" class="LineNr">1254 </span> <span class="Delimiter">{</span>
<span id="L1255" class="LineNr">1255 </span> compare g, <span class="Constant">0x82</span>/up-arrow
<span id="L1256" class="LineNr">1256 </span> <span class="PreProc">break-if-!=</span>
<span id="L1257" class="LineNr">1257 </span> <a href='gap-buffer.mu.html#L1374'>gap-up</a> self
<span id="L1258" class="LineNr">1258 </span> <span class="PreProc">return</span>
<span id="L1259" class="LineNr">1259 </span> <span class="Delimiter">}</span>
<span id="L1260" class="LineNr">1260 </span> <span class="Delimiter">{</span>
<span id="L1261" class="LineNr">1261 </span> compare g, <span class="Constant">0x15</span>/ctrl-u
<span id="L1262" class="LineNr">1262 </span> <span class="PreProc">break-if-!=</span>
<span id="L1263" class="LineNr">1263 </span> <a href='gap-buffer.mu.html#L19'>clear-gap-buffer</a> self
<span id="L1264" class="LineNr">1264 </span> <span class="PreProc">return</span>
<span id="L1265" class="LineNr">1265 </span> <span class="Delimiter">}</span>
<span id="L1266" class="LineNr">1266 </span> <span class="Delimiter">{</span>
<span id="L1267" class="LineNr">1267 </span> compare g, <span class="Constant">9</span>/tab
<span id="L1268" class="LineNr">1268 </span> <span class="PreProc">break-if-!=</span>
<span id="L1269" class="LineNr">1269 </span> <span class="muComment"># tab = 2 spaces</span>
<span id="L1270" class="LineNr">1270 </span> <a href='gap-buffer.mu.html#L447'>add-code-point-at-gap</a> self, <span class="Constant">0x20</span>/space
<span id="L1271" class="LineNr">1271 </span> <a href='gap-buffer.mu.html#L447'>add-code-point-at-gap</a> self, <span class="Constant">0x20</span>/space
<span id="L1272" class="LineNr">1272 </span> <span class="PreProc">return</span>
<span id="L1273" class="LineNr">1273 </span> <span class="Delimiter">}</span>
<span id="L1274" class="LineNr">1274 </span> <span class="muComment"># default: insert character</span>
<span id="L1275" class="LineNr">1275 </span> <a href='gap-buffer.mu.html#L441'>add-grapheme-at-gap</a> self, g
<span id="L1276" class="LineNr">1276 </span><span class="Delimiter">}</span>
<span id="L1277" class="LineNr">1277 </span>
<span id="L1278" class="LineNr">1278 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='gap-buffer.mu.html#L1278'>gap-to-start-of-next-word</a></span> self: (addr <a href='gap-buffer.mu.html#L3'>gap-buffer</a>) <span class="Delimiter">{</span>
<span id="L1279" class="LineNr">1279 </span> <span class="PreProc">var</span> curr/<span class="muRegEax">eax</span>: grapheme <span class="Special">&lt;-</span> copy <span class="Constant">0</span>
<span id="L1280" class="LineNr">1280 </span> <span class="muComment"># skip to next space</span>
<span id="L1281" class="LineNr">1281 </span> <span class="Delimiter">{</span>
<span id="L1282" class="LineNr">1282 </span> curr <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L482'>gap-right</a> self
<span id="L1283" class="LineNr">1283 </span> compare curr, <span class="Constant">-1</span>
<span id="L1284" class="LineNr">1284 </span> <span class="PreProc">break-if-=</span>
<span id="L1285" class="LineNr">1285 </span> compare curr, <span class="Constant">0x20</span>/space
<span id="L1286" class="LineNr">1286 </span> <span class="PreProc">break-if-=</span>
<span id="L1287" class="LineNr">1287 </span> compare curr, <span class="Constant">0x20</span>/space
<span id="L1287" class="LineNr">1287 </span> compare curr, <span class="Constant">0xa</span>/newline
<span id="L1288" class="LineNr">1288 </span> <span class="PreProc">break-if-=</span>
<span id="L1289" class="LineNr">1289 </span> compare curr, <span class="Constant">0xa</span>/newline
<span id="L1290" class="LineNr">1290 </span> <span class="PreProc">break-if-=</span>
<span id="L1291" class="LineNr">1291 </span> <span class="PreProc">loop</span>
<span id="L1292" class="LineNr">1292 </span> <span class="Delimiter">}</span>
<span id="L1293" class="LineNr">1293 </span> <span class="muComment"># skip past spaces</span>
<span id="L1294" class="LineNr">1294 </span> <span class="Delimiter">{</span>
<span id="L1295" class="LineNr">1295 </span> curr <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L482'>gap-right</a> self
<span id="L1296" class="LineNr">1296 </span> compare curr, <span class="Constant">-1</span>
<span id="L1297" class="LineNr">1297 </span> <span class="PreProc">break-if-=</span>
<span id="L1298" class="LineNr">1298 </span> compare curr, <span class="Constant">0x20</span>/space
<span id="L1289" class="LineNr">1289 </span> <span class="PreProc">loop</span>
<span id="L1290" class="LineNr">1290 </span> <span class="Delimiter">}</span>
<span id="L1291" class="LineNr">1291 </span> <span class="muComment"># skip past spaces</span>
<span id="L1292" class="LineNr">1292 </span> <span class="Delimiter">{</span>
<span id="L1293" class="LineNr">1293 </span> curr <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L482'>gap-right</a> self
<span id="L1294" class="LineNr">1294 </span> compare curr, <span class="Constant">-1</span>
<span id="L1295" class="LineNr">1295 </span> <span class="PreProc">break-if-=</span>
<span id="L1296" class="LineNr">1296 </span> compare curr, <span class="Constant">0x20</span>/space
<span id="L1297" class="LineNr">1297 </span> <span class="PreProc">loop-if-=</span>
<span id="L1298" class="LineNr">1298 </span> compare curr, <span class="Constant">0xa</span>/space
<span id="L1299" class="LineNr">1299 </span> <span class="PreProc">loop-if-=</span>
<span id="L1300" class="LineNr">1300 </span> compare curr, <span class="Constant">0xa</span>/space
<span id="L1301" class="LineNr">1301 </span> <span class="PreProc">loop-if-=</span>
<span id="L1302" class="LineNr">1302 </span> curr <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L496'>gap-left</a> self
<span id="L1303" class="LineNr">1303 </span> <span class="PreProc">break</span>
<span id="L1304" class="LineNr">1304 </span> <span class="Delimiter">}</span>
<span id="L1305" class="LineNr">1305 </span><span class="Delimiter">}</span>
<span id="L1306" class="LineNr">1306 </span>
<span id="L1307" class="LineNr">1307 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='gap-buffer.mu.html#L1307'>gap-to-end-of-previous-word</a></span> self: (addr <a href='gap-buffer.mu.html#L3'>gap-buffer</a>) <span class="Delimiter">{</span>
<span id="L1308" class="LineNr">1308 </span> <span class="PreProc">var</span> curr/<span class="muRegEax">eax</span>: grapheme <span class="Special">&lt;-</span> copy <span class="Constant">0</span>
<span id="L1309" class="LineNr">1309 </span> <span class="muComment"># skip to previous space</span>
<span id="L1310" class="LineNr">1310 </span> <span class="Delimiter">{</span>
<span id="L1311" class="LineNr">1311 </span> curr <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L496'>gap-left</a> self
<span id="L1312" class="LineNr">1312 </span> compare curr, <span class="Constant">-1</span>
<span id="L1300" class="LineNr">1300 </span> curr <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L496'>gap-left</a> self
<span id="L1301" class="LineNr">1301 </span> <span class="PreProc">break</span>
<span id="L1302" class="LineNr">1302 </span> <span class="Delimiter">}</span>
<span id="L1303" class="LineNr">1303 </span><span class="Delimiter">}</span>
<span id="L1304" class="LineNr">1304 </span>
<span id="L1305" class="LineNr">1305 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='gap-buffer.mu.html#L1305'>gap-to-end-of-previous-word</a></span> self: (addr <a href='gap-buffer.mu.html#L3'>gap-buffer</a>) <span class="Delimiter">{</span>
<span id="L1306" class="LineNr">1306 </span> <span class="PreProc">var</span> curr/<span class="muRegEax">eax</span>: grapheme <span class="Special">&lt;-</span> copy <span class="Constant">0</span>
<span id="L1307" class="LineNr">1307 </span> <span class="muComment"># skip to previous space</span>
<span id="L1308" class="LineNr">1308 </span> <span class="Delimiter">{</span>
<span id="L1309" class="LineNr">1309 </span> curr <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L496'>gap-left</a> self
<span id="L1310" class="LineNr">1310 </span> compare curr, <span class="Constant">-1</span>
<span id="L1311" class="LineNr">1311 </span> <span class="PreProc">break-if-=</span>
<span id="L1312" class="LineNr">1312 </span> compare curr, <span class="Constant">0x20</span>/space
<span id="L1313" class="LineNr">1313 </span> <span class="PreProc">break-if-=</span>
<span id="L1314" class="LineNr">1314 </span> compare curr, <span class="Constant">0x20</span>/space
<span id="L1314" class="LineNr">1314 </span> compare curr, <span class="Constant">0xa</span>/newline
<span id="L1315" class="LineNr">1315 </span> <span class="PreProc">break-if-=</span>
<span id="L1316" class="LineNr">1316 </span> compare curr, <span class="Constant">0xa</span>/newline
<span id="L1317" class="LineNr">1317 </span> <span class="PreProc">break-if-=</span>
<span id="L1318" class="LineNr">1318 </span> <span class="PreProc">loop</span>
<span id="L1319" class="LineNr">1319 </span> <span class="Delimiter">}</span>
<span id="L1320" class="LineNr">1320 </span> <span class="muComment"># skip past all spaces but one</span>
<span id="L1321" class="LineNr">1321 </span> <span class="Delimiter">{</span>
<span id="L1322" class="LineNr">1322 </span> curr <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L496'>gap-left</a> self
<span id="L1323" class="LineNr">1323 </span> compare curr, <span class="Constant">-1</span>
<span id="L1324" class="LineNr">1324 </span> <span class="PreProc">break-if-=</span>
<span id="L1325" class="LineNr">1325 </span> compare curr, <span class="Constant">0x20</span>/space
<span id="L1316" class="LineNr">1316 </span> <span class="PreProc">loop</span>
<span id="L1317" class="LineNr">1317 </span> <span class="Delimiter">}</span>
<span id="L1318" class="LineNr">1318 </span> <span class="muComment"># skip past all spaces but one</span>
<span id="L1319" class="LineNr">1319 </span> <span class="Delimiter">{</span>
<span id="L1320" class="LineNr">1320 </span> curr <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L496'>gap-left</a> self
<span id="L1321" class="LineNr">1321 </span> compare curr, <span class="Constant">-1</span>
<span id="L1322" class="LineNr">1322 </span> <span class="PreProc">break-if-=</span>
<span id="L1323" class="LineNr">1323 </span> compare curr, <span class="Constant">0x20</span>/space
<span id="L1324" class="LineNr">1324 </span> <span class="PreProc">loop-if-=</span>
<span id="L1325" class="LineNr">1325 </span> compare curr, <span class="Constant">0xa</span>/space
<span id="L1326" class="LineNr">1326 </span> <span class="PreProc">loop-if-=</span>
<span id="L1327" class="LineNr">1327 </span> compare curr, <span class="Constant">0xa</span>/space
<span id="L1328" class="LineNr">1328 </span> <span class="PreProc">loop-if-=</span>
<span id="L1329" class="LineNr">1329 </span> curr <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L482'>gap-right</a> self
<span id="L1330" class="LineNr">1330 </span> <span class="PreProc">break</span>
<span id="L1331" class="LineNr">1331 </span> <span class="Delimiter">}</span>
<span id="L1332" class="LineNr">1332 </span><span class="Delimiter">}</span>
<span id="L1333" class="LineNr">1333 </span>
<span id="L1334" class="LineNr">1334 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='gap-buffer.mu.html#L1334'>gap-to-previous-start-of-line</a></span> self: (addr <a href='gap-buffer.mu.html#L3'>gap-buffer</a>) <span class="Delimiter">{</span>
<span id="L1335" class="LineNr">1335 </span> <span class="muComment"># skip past immediate newline</span>
<span id="L1336" class="LineNr">1336 </span> <span class="PreProc">var</span> dummy/<span class="muRegEax">eax</span>: grapheme <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L496'>gap-left</a> self
<span id="L1337" class="LineNr">1337 </span> <span class="muComment"># skip to previous newline</span>
<span id="L1338" class="LineNr">1338 </span> <span class="Delimiter">{</span>
<span id="L1339" class="LineNr">1339 </span> dummy <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L496'>gap-left</a> self
<span id="L1340" class="LineNr">1340 </span> <span class="Delimiter">{</span>
<span id="L1341" class="LineNr">1341 </span> compare dummy, <span class="Constant">-1</span>
<span id="L1342" class="LineNr">1342 </span> <span class="PreProc">break-if-!=</span>
<span id="L1343" class="LineNr">1343 </span> <span class="PreProc">return</span>
<span id="L1344" class="LineNr">1344 </span> <span class="Delimiter">}</span>
<span id="L1345" class="LineNr">1345 </span> <span class="Delimiter">{</span>
<span id="L1346" class="LineNr">1346 </span> compare dummy, <span class="Constant">0xa</span>/newline
<span id="L1347" class="LineNr">1347 </span> <span class="PreProc">break-if-!=</span>
<span id="L1348" class="LineNr">1348 </span> dummy <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L482'>gap-right</a> self
<span id="L1349" class="LineNr">1349 </span> <span class="PreProc">return</span>
<span id="L1350" class="LineNr">1350 </span> <span class="Delimiter">}</span>
<span id="L1351" class="LineNr">1351 </span> <span class="PreProc">loop</span>
<span id="L1352" class="LineNr">1352 </span> <span class="Delimiter">}</span>
<span id="L1353" class="LineNr">1353 </span><span class="Delimiter">}</span>
<span id="L1354" class="LineNr">1354 </span>
<span id="L1355" class="LineNr">1355 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='gap-buffer.mu.html#L1355'>gap-to-next-end-of-line</a></span> self: (addr <a href='gap-buffer.mu.html#L3'>gap-buffer</a>) <span class="Delimiter">{</span>
<span id="L1356" class="LineNr">1356 </span> <span class="muComment"># skip past immediate newline</span>
<span id="L1357" class="LineNr">1357 </span> <span class="PreProc">var</span> dummy/<span class="muRegEax">eax</span>: grapheme <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L482'>gap-right</a> self
<span id="L1358" class="LineNr">1358 </span> <span class="muComment"># skip to next newline</span>
<span id="L1359" class="LineNr">1359 </span> <span class="Delimiter">{</span>
<span id="L1360" class="LineNr">1360 </span> dummy <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L482'>gap-right</a> self
<span id="L1361" class="LineNr">1361 </span> <span class="Delimiter">{</span>
<span id="L1362" class="LineNr">1362 </span> compare dummy, <span class="Constant">-1</span>
<span id="L1363" class="LineNr">1363 </span> <span class="PreProc">break-if-!=</span>
<span id="L1364" class="LineNr">1364 </span> <span class="PreProc">return</span>
<span id="L1365" class="LineNr">1365 </span> <span class="Delimiter">}</span>
<span id="L1366" class="LineNr">1366 </span> <span class="Delimiter">{</span>
<span id="L1367" class="LineNr">1367 </span> compare dummy, <span class="Constant">0xa</span>/newline
<span id="L1368" class="LineNr">1368 </span> <span class="PreProc">break-if-!=</span>
<span id="L1369" class="LineNr">1369 </span> dummy <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L496'>gap-left</a> self
<span id="L1370" class="LineNr">1370 </span> <span class="PreProc">return</span>
<span id="L1371" class="LineNr">1371 </span> <span class="Delimiter">}</span>
<span id="L1372" class="LineNr">1372 </span> <span class="PreProc">loop</span>
<span id="L1373" class="LineNr">1373 </span> <span class="Delimiter">}</span>
<span id="L1374" class="LineNr">1374 </span><span class="Delimiter">}</span>
<span id="L1375" class="LineNr">1375 </span>
<span id="L1376" class="LineNr">1376 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='gap-buffer.mu.html#L1376'>gap-up</a></span> self: (addr <a href='gap-buffer.mu.html#L3'>gap-buffer</a>) <span class="Delimiter">{</span>
<span id="L1377" class="LineNr">1377 </span> <span class="muComment"># compute column</span>
<span id="L1378" class="LineNr">1378 </span> <span class="PreProc">var</span> col/<span class="muRegEdx">edx</span>: int <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L1431'>count-columns-to-start-of-line</a> self
<span id="L1379" class="LineNr">1379 </span> <span class="muComment">#</span>
<span id="L1380" class="LineNr">1380 </span> <a href='gap-buffer.mu.html#L1334'>gap-to-previous-start-of-line</a> self
<span id="L1381" class="LineNr">1381 </span> <span class="muComment"># skip ahead by up to col on previous line</span>
<span id="L1382" class="LineNr">1382 </span> <span class="PreProc">var</span> i/<span class="muRegEcx">ecx</span>: int <span class="Special">&lt;-</span> copy <span class="Constant">0</span>
<span id="L1383" class="LineNr">1383 </span> <span class="Delimiter">{</span>
<span id="L1384" class="LineNr">1384 </span> compare i, col
<span id="L1385" class="LineNr">1385 </span> <span class="PreProc">break-if-&gt;=</span>
<span id="L1386" class="LineNr">1386 </span> <span class="PreProc">var</span> curr/<span class="muRegEax">eax</span>: grapheme <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L482'>gap-right</a> self
<span id="L1387" class="LineNr">1387 </span> <span class="Delimiter">{</span>
<span id="L1388" class="LineNr">1388 </span> compare curr, <span class="Constant">-1</span>
<span id="L1389" class="LineNr">1389 </span> <span class="PreProc">break-if-!=</span>
<span id="L1390" class="LineNr">1390 </span> <span class="PreProc">return</span>
<span id="L1391" class="LineNr">1391 </span> <span class="Delimiter">}</span>
<span id="L1392" class="LineNr">1392 </span> compare curr, <span class="Constant">0xa</span>/newline
<span id="L1393" class="LineNr">1393 </span> <span class="Delimiter">{</span>
<span id="L1394" class="LineNr">1394 </span> <span class="PreProc">break-if-!=</span>
<span id="L1395" class="LineNr">1395 </span> curr <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L496'>gap-left</a> self
<span id="L1396" class="LineNr">1396 </span> <span class="PreProc">return</span>
<span id="L1397" class="LineNr">1397 </span> <span class="Delimiter">}</span>
<span id="L1398" class="LineNr">1398 </span> i <span class="Special">&lt;-</span> increment
<span id="L1399" class="LineNr">1399 </span> <span class="PreProc">loop</span>
<span id="L1400" class="LineNr">1400 </span> <span class="Delimiter">}</span>
<span id="L1401" class="LineNr">1401 </span><span class="Delimiter">}</span>
<span id="L1402" class="LineNr">1402 </span>
<span id="L1403" class="LineNr">1403 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='gap-buffer.mu.html#L1403'>gap-down</a></span> self: (addr <a href='gap-buffer.mu.html#L3'>gap-buffer</a>) <span class="Delimiter">{</span>
<span id="L1404" class="LineNr">1404 </span> <span class="muComment"># compute column</span>
<span id="L1405" class="LineNr">1405 </span> <span class="PreProc">var</span> col/<span class="muRegEdx">edx</span>: int <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L1431'>count-columns-to-start-of-line</a> self
<span id="L1406" class="LineNr">1406 </span> <span class="muComment"># skip to start of next line</span>
<span id="L1407" class="LineNr">1407 </span> <a href='gap-buffer.mu.html#L1454'>gap-to-end-of-line</a> self
<span id="L1408" class="LineNr">1408 </span> <span class="PreProc">var</span> dummy/<span class="muRegEax">eax</span>: grapheme <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L482'>gap-right</a> self
<span id="L1409" class="LineNr">1409 </span> <span class="muComment"># skip ahead by up to col on previous line</span>
<span id="L1410" class="LineNr">1410 </span> <span class="PreProc">var</span> i/<span class="muRegEcx">ecx</span>: int <span class="Special">&lt;-</span> copy <span class="Constant">0</span>
<span id="L1411" class="LineNr">1411 </span> <span class="Delimiter">{</span>
<span id="L1412" class="LineNr">1412 </span> compare i, col
<span id="L1413" class="LineNr">1413 </span> <span class="PreProc">break-if-&gt;=</span>
<span id="L1414" class="LineNr">1414 </span> <span class="PreProc">var</span> curr/<span class="muRegEax">eax</span>: grapheme <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L482'>gap-right</a> self
<span id="L1415" class="LineNr">1415 </span> <span class="Delimiter">{</span>
<span id="L1416" class="LineNr">1416 </span> compare curr, <span class="Constant">-1</span>
<span id="L1417" class="LineNr">1417 </span> <span class="PreProc">break-if-!=</span>
<span id="L1418" class="LineNr">1418 </span> <span class="PreProc">return</span>
<span id="L1419" class="LineNr">1419 </span> <span class="Delimiter">}</span>
<span id="L1420" class="LineNr">1420 </span> compare curr, <span class="Constant">0xa</span>/newline
<span id="L1421" class="LineNr">1421 </span> <span class="Delimiter">{</span>
<span id="L1422" class="LineNr">1422 </span> <span class="PreProc">break-if-!=</span>
<span id="L1423" class="LineNr">1423 </span> curr <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L496'>gap-left</a> self
<span id="L1424" class="LineNr">1424 </span> <span class="PreProc">return</span>
<span id="L1425" class="LineNr">1425 </span> <span class="Delimiter">}</span>
<span id="L1426" class="LineNr">1426 </span> i <span class="Special">&lt;-</span> increment
<span id="L1427" class="LineNr">1427 </span> <span class="PreProc">loop</span>
<span id="L1428" class="LineNr">1428 </span> <span class="Delimiter">}</span>
<span id="L1429" class="LineNr">1429 </span><span class="Delimiter">}</span>
<span id="L1430" class="LineNr">1430 </span>
<span id="L1431" class="LineNr">1431 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='gap-buffer.mu.html#L1431'>count-columns-to-start-of-line</a></span> self: (addr <a href='gap-buffer.mu.html#L3'>gap-buffer</a>)<span class="PreProc"> -&gt; </span>_/<span class="muRegEdx">edx</span>: int <span class="Delimiter">{</span>
<span id="L1432" class="LineNr">1432 </span> <span class="PreProc">var</span> count/<span class="muRegEdx">edx</span>: int <span class="Special">&lt;-</span> copy <span class="Constant">0</span>
<span id="L1433" class="LineNr">1433 </span> <span class="PreProc">var</span> dummy/<span class="muRegEax">eax</span>: grapheme <span class="Special">&lt;-</span> copy <span class="Constant">0</span>
<span id="L1434" class="LineNr">1434 </span> <span class="muComment"># skip to previous newline</span>
<span id="L1435" class="LineNr">1435 </span> <span class="Delimiter">{</span>
<span id="L1436" class="LineNr">1436 </span> dummy <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L496'>gap-left</a> self
<span id="L1437" class="LineNr">1437 </span> <span class="Delimiter">{</span>
<span id="L1438" class="LineNr">1438 </span> compare dummy, <span class="Constant">-1</span>
<span id="L1439" class="LineNr">1439 </span> <span class="PreProc">break-if-!=</span>
<span id="L1440" class="LineNr">1440 </span> <span class="PreProc">return</span> count
<span id="L1441" class="LineNr">1441 </span> <span class="Delimiter">}</span>
<span id="L1442" class="LineNr">1442 </span> <span class="Delimiter">{</span>
<span id="L1443" class="LineNr">1443 </span> compare dummy, <span class="Constant">0xa</span>/newline
<span id="L1444" class="LineNr">1444 </span> <span class="PreProc">break-if-!=</span>
<span id="L1445" class="LineNr">1445 </span> dummy <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L482'>gap-right</a> self
<span id="L1446" class="LineNr">1446 </span> <span class="PreProc">return</span> count
<span id="L1447" class="LineNr">1447 </span> <span class="Delimiter">}</span>
<span id="L1448" class="LineNr">1448 </span> count <span class="Special">&lt;-</span> increment
<span id="L1449" class="LineNr">1449 </span> <span class="PreProc">loop</span>
<span id="L1450" class="LineNr">1450 </span> <span class="Delimiter">}</span>
<span id="L1451" class="LineNr">1451 </span> <span class="PreProc">return</span> count
<span id="L1452" class="LineNr">1452 </span><span class="Delimiter">}</span>
<span id="L1453" class="LineNr">1453 </span>
<span id="L1454" class="LineNr">1454 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='gap-buffer.mu.html#L1454'>gap-to-end-of-line</a></span> self: (addr <a href='gap-buffer.mu.html#L3'>gap-buffer</a>) <span class="Delimiter">{</span>
<span id="L1455" class="LineNr">1455 </span> <span class="PreProc">var</span> dummy/<span class="muRegEax">eax</span>: grapheme <span class="Special">&lt;-</span> copy <span class="Constant">0</span>
<span id="L1456" class="LineNr">1456 </span> <span class="muComment"># skip to next newline</span>
<span id="L1457" class="LineNr">1457 </span> <span class="Delimiter">{</span>
<span id="L1458" class="LineNr">1458 </span> dummy <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L482'>gap-right</a> self
<span id="L1459" class="LineNr">1459 </span> <span class="Delimiter">{</span>
<span id="L1460" class="LineNr">1460 </span> compare dummy, <span class="Constant">-1</span>
<span id="L1461" class="LineNr">1461 </span> <span class="PreProc">break-if-!=</span>
<span id="L1462" class="LineNr">1462 </span> <span class="PreProc">return</span>
<span id="L1463" class="LineNr">1463 </span> <span class="Delimiter">}</span>
<span id="L1464" class="LineNr">1464 </span> <span class="Delimiter">{</span>
<span id="L1465" class="LineNr">1465 </span> compare dummy, <span class="Constant">0xa</span>/newline
<span id="L1466" class="LineNr">1466 </span> <span class="PreProc">break-if-!=</span>
<span id="L1467" class="LineNr">1467 </span> dummy <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L496'>gap-left</a> self
<span id="L1468" class="LineNr">1468 </span> <span class="PreProc">return</span>
<span id="L1469" class="LineNr">1469 </span> <span class="Delimiter">}</span>
<span id="L1470" class="LineNr">1470 </span> <span class="PreProc">loop</span>
<span id="L1471" class="LineNr">1471 </span> <span class="Delimiter">}</span>
<span id="L1472" class="LineNr">1472 </span><span class="Delimiter">}</span>
<span id="L1327" class="LineNr">1327 </span> curr <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L482'>gap-right</a> self
<span id="L1328" class="LineNr">1328 </span> <span class="PreProc">break</span>
<span id="L1329" class="LineNr">1329 </span> <span class="Delimiter">}</span>
<span id="L1330" class="LineNr">1330 </span><span class="Delimiter">}</span>
<span id="L1331" class="LineNr">1331 </span>
<span id="L1332" class="LineNr">1332 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='gap-buffer.mu.html#L1332'>gap-to-previous-start-of-line</a></span> self: (addr <a href='gap-buffer.mu.html#L3'>gap-buffer</a>) <span class="Delimiter">{</span>
<span id="L1333" class="LineNr">1333 </span> <span class="muComment"># skip past immediate newline</span>
<span id="L1334" class="LineNr">1334 </span> <span class="PreProc">var</span> dummy/<span class="muRegEax">eax</span>: grapheme <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L496'>gap-left</a> self
<span id="L1335" class="LineNr">1335 </span> <span class="muComment"># skip to previous newline</span>
<span id="L1336" class="LineNr">1336 </span> <span class="Delimiter">{</span>
<span id="L1337" class="LineNr">1337 </span> dummy <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L496'>gap-left</a> self
<span id="L1338" class="LineNr">1338 </span> <span class="Delimiter">{</span>
<span id="L1339" class="LineNr">1339 </span> compare dummy, <span class="Constant">-1</span>
<span id="L1340" class="LineNr">1340 </span> <span class="PreProc">break-if-!=</span>
<span id="L1341" class="LineNr">1341 </span> <span class="PreProc">return</span>
<span id="L1342" class="LineNr">1342 </span> <span class="Delimiter">}</span>
<span id="L1343" class="LineNr">1343 </span> <span class="Delimiter">{</span>
<span id="L1344" class="LineNr">1344 </span> compare dummy, <span class="Constant">0xa</span>/newline
<span id="L1345" class="LineNr">1345 </span> <span class="PreProc">break-if-!=</span>
<span id="L1346" class="LineNr">1346 </span> dummy <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L482'>gap-right</a> self
<span id="L1347" class="LineNr">1347 </span> <span class="PreProc">return</span>
<span id="L1348" class="LineNr">1348 </span> <span class="Delimiter">}</span>
<span id="L1349" class="LineNr">1349 </span> <span class="PreProc">loop</span>
<span id="L1350" class="LineNr">1350 </span> <span class="Delimiter">}</span>
<span id="L1351" class="LineNr">1351 </span><span class="Delimiter">}</span>
<span id="L1352" class="LineNr">1352 </span>
<span id="L1353" class="LineNr">1353 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='gap-buffer.mu.html#L1353'>gap-to-next-end-of-line</a></span> self: (addr <a href='gap-buffer.mu.html#L3'>gap-buffer</a>) <span class="Delimiter">{</span>
<span id="L1354" class="LineNr">1354 </span> <span class="muComment"># skip past immediate newline</span>
<span id="L1355" class="LineNr">1355 </span> <span class="PreProc">var</span> dummy/<span class="muRegEax">eax</span>: grapheme <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L482'>gap-right</a> self
<span id="L1356" class="LineNr">1356 </span> <span class="muComment"># skip to next newline</span>
<span id="L1357" class="LineNr">1357 </span> <span class="Delimiter">{</span>
<span id="L1358" class="LineNr">1358 </span> dummy <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L482'>gap-right</a> self
<span id="L1359" class="LineNr">1359 </span> <span class="Delimiter">{</span>
<span id="L1360" class="LineNr">1360 </span> compare dummy, <span class="Constant">-1</span>
<span id="L1361" class="LineNr">1361 </span> <span class="PreProc">break-if-!=</span>
<span id="L1362" class="LineNr">1362 </span> <span class="PreProc">return</span>
<span id="L1363" class="LineNr">1363 </span> <span class="Delimiter">}</span>
<span id="L1364" class="LineNr">1364 </span> <span class="Delimiter">{</span>
<span id="L1365" class="LineNr">1365 </span> compare dummy, <span class="Constant">0xa</span>/newline
<span id="L1366" class="LineNr">1366 </span> <span class="PreProc">break-if-!=</span>
<span id="L1367" class="LineNr">1367 </span> dummy <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L496'>gap-left</a> self
<span id="L1368" class="LineNr">1368 </span> <span class="PreProc">return</span>
<span id="L1369" class="LineNr">1369 </span> <span class="Delimiter">}</span>
<span id="L1370" class="LineNr">1370 </span> <span class="PreProc">loop</span>
<span id="L1371" class="LineNr">1371 </span> <span class="Delimiter">}</span>
<span id="L1372" class="LineNr">1372 </span><span class="Delimiter">}</span>
<span id="L1373" class="LineNr">1373 </span>
<span id="L1374" class="LineNr">1374 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='gap-buffer.mu.html#L1374'>gap-up</a></span> self: (addr <a href='gap-buffer.mu.html#L3'>gap-buffer</a>) <span class="Delimiter">{</span>
<span id="L1375" class="LineNr">1375 </span> <span class="muComment"># compute column</span>
<span id="L1376" class="LineNr">1376 </span> <span class="PreProc">var</span> col/<span class="muRegEdx">edx</span>: int <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L1429'>count-columns-to-start-of-line</a> self
<span id="L1377" class="LineNr">1377 </span> <span class="muComment">#</span>
<span id="L1378" class="LineNr">1378 </span> <a href='gap-buffer.mu.html#L1332'>gap-to-previous-start-of-line</a> self
<span id="L1379" class="LineNr">1379 </span> <span class="muComment"># skip ahead by up to col on previous line</span>
<span id="L1380" class="LineNr">1380 </span> <span class="PreProc">var</span> i/<span class="muRegEcx">ecx</span>: int <span class="Special">&lt;-</span> copy <span class="Constant">0</span>
<span id="L1381" class="LineNr">1381 </span> <span class="Delimiter">{</span>
<span id="L1382" class="LineNr">1382 </span> compare i, col
<span id="L1383" class="LineNr">1383 </span> <span class="PreProc">break-if-&gt;=</span>
<span id="L1384" class="LineNr">1384 </span> <span class="PreProc">var</span> curr/<span class="muRegEax">eax</span>: grapheme <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L482'>gap-right</a> self
<span id="L1385" class="LineNr">1385 </span> <span class="Delimiter">{</span>
<span id="L1386" class="LineNr">1386 </span> compare curr, <span class="Constant">-1</span>
<span id="L1387" class="LineNr">1387 </span> <span class="PreProc">break-if-!=</span>
<span id="L1388" class="LineNr">1388 </span> <span class="PreProc">return</span>
<span id="L1389" class="LineNr">1389 </span> <span class="Delimiter">}</span>
<span id="L1390" class="LineNr">1390 </span> compare curr, <span class="Constant">0xa</span>/newline
<span id="L1391" class="LineNr">1391 </span> <span class="Delimiter">{</span>
<span id="L1392" class="LineNr">1392 </span> <span class="PreProc">break-if-!=</span>
<span id="L1393" class="LineNr">1393 </span> curr <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L496'>gap-left</a> self
<span id="L1394" class="LineNr">1394 </span> <span class="PreProc">return</span>
<span id="L1395" class="LineNr">1395 </span> <span class="Delimiter">}</span>
<span id="L1396" class="LineNr">1396 </span> i <span class="Special">&lt;-</span> increment
<span id="L1397" class="LineNr">1397 </span> <span class="PreProc">loop</span>
<span id="L1398" class="LineNr">1398 </span> <span class="Delimiter">}</span>
<span id="L1399" class="LineNr">1399 </span><span class="Delimiter">}</span>
<span id="L1400" class="LineNr">1400 </span>
<span id="L1401" class="LineNr">1401 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='gap-buffer.mu.html#L1401'>gap-down</a></span> self: (addr <a href='gap-buffer.mu.html#L3'>gap-buffer</a>) <span class="Delimiter">{</span>
<span id="L1402" class="LineNr">1402 </span> <span class="muComment"># compute column</span>
<span id="L1403" class="LineNr">1403 </span> <span class="PreProc">var</span> col/<span class="muRegEdx">edx</span>: int <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L1429'>count-columns-to-start-of-line</a> self
<span id="L1404" class="LineNr">1404 </span> <span class="muComment"># skip to start of next line</span>
<span id="L1405" class="LineNr">1405 </span> <a href='gap-buffer.mu.html#L1452'>gap-to-end-of-line</a> self
<span id="L1406" class="LineNr">1406 </span> <span class="PreProc">var</span> dummy/<span class="muRegEax">eax</span>: grapheme <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L482'>gap-right</a> self
<span id="L1407" class="LineNr">1407 </span> <span class="muComment"># skip ahead by up to col on previous line</span>
<span id="L1408" class="LineNr">1408 </span> <span class="PreProc">var</span> i/<span class="muRegEcx">ecx</span>: int <span class="Special">&lt;-</span> copy <span class="Constant">0</span>
<span id="L1409" class="LineNr">1409 </span> <span class="Delimiter">{</span>
<span id="L1410" class="LineNr">1410 </span> compare i, col
<span id="L1411" class="LineNr">1411 </span> <span class="PreProc">break-if-&gt;=</span>
<span id="L1412" class="LineNr">1412 </span> <span class="PreProc">var</span> curr/<span class="muRegEax">eax</span>: grapheme <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L482'>gap-right</a> self
<span id="L1413" class="LineNr">1413 </span> <span class="Delimiter">{</span>
<span id="L1414" class="LineNr">1414 </span> compare curr, <span class="Constant">-1</span>
<span id="L1415" class="LineNr">1415 </span> <span class="PreProc">break-if-!=</span>
<span id="L1416" class="LineNr">1416 </span> <span class="PreProc">return</span>
<span id="L1417" class="LineNr">1417 </span> <span class="Delimiter">}</span>
<span id="L1418" class="LineNr">1418 </span> compare curr, <span class="Constant">0xa</span>/newline
<span id="L1419" class="LineNr">1419 </span> <span class="Delimiter">{</span>
<span id="L1420" class="LineNr">1420 </span> <span class="PreProc">break-if-!=</span>
<span id="L1421" class="LineNr">1421 </span> curr <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L496'>gap-left</a> self
<span id="L1422" class="LineNr">1422 </span> <span class="PreProc">return</span>
<span id="L1423" class="LineNr">1423 </span> <span class="Delimiter">}</span>
<span id="L1424" class="LineNr">1424 </span> i <span class="Special">&lt;-</span> increment
<span id="L1425" class="LineNr">1425 </span> <span class="PreProc">loop</span>
<span id="L1426" class="LineNr">1426 </span> <span class="Delimiter">}</span>
<span id="L1427" class="LineNr">1427 </span><span class="Delimiter">}</span>
<span id="L1428" class="LineNr">1428 </span>
<span id="L1429" class="LineNr">1429 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='gap-buffer.mu.html#L1429'>count-columns-to-start-of-line</a></span> self: (addr <a href='gap-buffer.mu.html#L3'>gap-buffer</a>)<span class="PreProc"> -&gt; </span>_/<span class="muRegEdx">edx</span>: int <span class="Delimiter">{</span>
<span id="L1430" class="LineNr">1430 </span> <span class="PreProc">var</span> count/<span class="muRegEdx">edx</span>: int <span class="Special">&lt;-</span> copy <span class="Constant">0</span>
<span id="L1431" class="LineNr">1431 </span> <span class="PreProc">var</span> dummy/<span class="muRegEax">eax</span>: grapheme <span class="Special">&lt;-</span> copy <span class="Constant">0</span>
<span id="L1432" class="LineNr">1432 </span> <span class="muComment"># skip to previous newline</span>
<span id="L1433" class="LineNr">1433 </span> <span class="Delimiter">{</span>
<span id="L1434" class="LineNr">1434 </span> dummy <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L496'>gap-left</a> self
<span id="L1435" class="LineNr">1435 </span> <span class="Delimiter">{</span>
<span id="L1436" class="LineNr">1436 </span> compare dummy, <span class="Constant">-1</span>
<span id="L1437" class="LineNr">1437 </span> <span class="PreProc">break-if-!=</span>
<span id="L1438" class="LineNr">1438 </span> <span class="PreProc">return</span> count
<span id="L1439" class="LineNr">1439 </span> <span class="Delimiter">}</span>
<span id="L1440" class="LineNr">1440 </span> <span class="Delimiter">{</span>
<span id="L1441" class="LineNr">1441 </span> compare dummy, <span class="Constant">0xa</span>/newline
<span id="L1442" class="LineNr">1442 </span> <span class="PreProc">break-if-!=</span>
<span id="L1443" class="LineNr">1443 </span> dummy <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L482'>gap-right</a> self
<span id="L1444" class="LineNr">1444 </span> <span class="PreProc">return</span> count
<span id="L1445" class="LineNr">1445 </span> <span class="Delimiter">}</span>
<span id="L1446" class="LineNr">1446 </span> count <span class="Special">&lt;-</span> increment
<span id="L1447" class="LineNr">1447 </span> <span class="PreProc">loop</span>
<span id="L1448" class="LineNr">1448 </span> <span class="Delimiter">}</span>
<span id="L1449" class="LineNr">1449 </span> <span class="PreProc">return</span> count
<span id="L1450" class="LineNr">1450 </span><span class="Delimiter">}</span>
<span id="L1451" class="LineNr">1451 </span>
<span id="L1452" class="LineNr">1452 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='gap-buffer.mu.html#L1452'>gap-to-end-of-line</a></span> self: (addr <a href='gap-buffer.mu.html#L3'>gap-buffer</a>) <span class="Delimiter">{</span>
<span id="L1453" class="LineNr">1453 </span> <span class="PreProc">var</span> dummy/<span class="muRegEax">eax</span>: grapheme <span class="Special">&lt;-</span> copy <span class="Constant">0</span>
<span id="L1454" class="LineNr">1454 </span> <span class="muComment"># skip to next newline</span>
<span id="L1455" class="LineNr">1455 </span> <span class="Delimiter">{</span>
<span id="L1456" class="LineNr">1456 </span> dummy <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L482'>gap-right</a> self
<span id="L1457" class="LineNr">1457 </span> <span class="Delimiter">{</span>
<span id="L1458" class="LineNr">1458 </span> compare dummy, <span class="Constant">-1</span>
<span id="L1459" class="LineNr">1459 </span> <span class="PreProc">break-if-!=</span>
<span id="L1460" class="LineNr">1460 </span> <span class="PreProc">return</span>
<span id="L1461" class="LineNr">1461 </span> <span class="Delimiter">}</span>
<span id="L1462" class="LineNr">1462 </span> <span class="Delimiter">{</span>
<span id="L1463" class="LineNr">1463 </span> compare dummy, <span class="Constant">0xa</span>/newline
<span id="L1464" class="LineNr">1464 </span> <span class="PreProc">break-if-!=</span>
<span id="L1465" class="LineNr">1465 </span> dummy <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L496'>gap-left</a> self
<span id="L1466" class="LineNr">1466 </span> <span class="PreProc">return</span>
<span id="L1467" class="LineNr">1467 </span> <span class="Delimiter">}</span>
<span id="L1468" class="LineNr">1468 </span> <span class="PreProc">loop</span>
<span id="L1469" class="LineNr">1469 </span> <span class="Delimiter">}</span>
<span id="L1470" class="LineNr">1470 </span><span class="Delimiter">}</span>
</pre>
</body>
</html>

View File

@ -193,7 +193,7 @@ if ('onhashchange' in window) {
<span id="L129" class="LineNr">129 </span> <span class="Delimiter">{</span>
<span id="L130" class="LineNr">130 </span> <span class="PreProc">var</span> curr-offset/<span class="muRegEbx">ebx</span>: (offset <a href='global.mu.html#L7'>global</a>) <span class="Special">&lt;-</span> compute-offset data, curr-index
<span id="L131" class="LineNr">131 </span> <span class="PreProc">var</span> curr/<span class="muRegEbx">ebx</span>: (addr <a href='global.mu.html#L7'>global</a>) <span class="Special">&lt;-</span> index data, curr-offset
<span id="L132" class="LineNr">132 </span> <span class="PreProc">var</span> continue?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='primitives.mu.html#L112'>primitive-global?</a> curr
<span id="L132" class="LineNr">132 </span> <span class="PreProc">var</span> continue?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='primitives.mu.html#L113'>primitive-global?</a> curr
<span id="L133" class="LineNr">133 </span> compare continue?, <span class="Constant">0</span>/false
<span id="L134" class="LineNr">134 </span> <span class="PreProc">break-if-=</span>
<span id="L135" class="LineNr">135 </span> curr-index <span class="Special">&lt;-</span> increment
@ -260,7 +260,7 @@ if ('onhashchange' in window) {
<span id="L196" class="LineNr">196 </span> <span class="PreProc">loop</span>
<span id="L197" class="LineNr">197 </span> <span class="Delimiter">}</span>
<span id="L198" class="LineNr">198 </span> <span class="muComment"># render primitives on top</span>
<span id="L199" class="LineNr">199 </span> <a href='primitives.mu.html#L48'>render-primitives</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">1</span>/xmin=padding-left, <span class="Constant">0x55</span>/xmax, <span class="Constant">0x2f</span>/ymax
<span id="L199" class="LineNr">199 </span> <a href='primitives.mu.html#L49'>render-primitives</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">1</span>/xmin=padding-left, <span class="Constant">0x55</span>/xmax, <span class="Constant">0x2f</span>/ymax
<span id="L200" class="LineNr">200 </span><span class="Delimiter">}</span>
<span id="L201" class="LineNr">201 </span>
<span id="L202" class="LineNr">202 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='global.mu.html#L202'>render-globals-menu</a></span> <a href='../500fake-screen.mu.html#L14'>screen</a>: (addr <a href='../500fake-screen.mu.html#L14'>screen</a>), _self: (addr <a href='global.mu.html#L1'>global-table</a>) <span class="Delimiter">{</span>
@ -308,7 +308,7 @@ if ('onhashchange' in window) {
<span id="L244" class="LineNr">244 </span> <span class="PreProc">var</span> curr-global/<span class="muRegEax">eax</span>: (addr <a href='global.mu.html#L7'>global</a>) <span class="Special">&lt;-</span> index data, cursor-offset
<span id="L245" class="LineNr">245 </span> <span class="PreProc">var</span> curr-editor-ah/<span class="muRegEax">eax</span>: (addr handle <a href='gap-buffer.mu.html#L3'>gap-buffer</a>) <span class="Special">&lt;-</span> get curr-global, input
<span id="L246" class="LineNr">246 </span> <span class="PreProc">var</span> curr-editor/<span class="muRegEax">eax</span>: (addr <a href='gap-buffer.mu.html#L3'>gap-buffer</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *curr-editor-ah
<span id="L247" class="LineNr">247 </span> <a href='gap-buffer.mu.html#L1206'>edit-gap-buffer</a> curr-editor, key
<span id="L247" class="LineNr">247 </span> <a href='gap-buffer.mu.html#L1204'>edit-gap-buffer</a> curr-editor, key
<span id="L248" class="LineNr">248 </span><span class="Delimiter">}</span>
<span id="L249" class="LineNr">249 </span>
<span id="L250" class="LineNr">250 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='global.mu.html#L250'>create-empty-global</a></span> _self: (addr <a href='global.mu.html#L1'>global-table</a>), name-stream: (addr stream byte), capacity: int <span class="Delimiter">{</span>

644
html/shell/infix.mu.html generated Normal file
View File

@ -0,0 +1,644 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Mu - shell/infix.mu</title>
<meta name="Generator" content="Vim/8.1">
<meta name="plugin-version" content="vim8.1_v1">
<meta name="syntax" content="none">
<meta name="settings" content="number_lines,use_css,pre_wrap,no_foldcolumn,expand_tabs,line_ids,prevent_copy=">
<meta name="colorscheme" content="minimal-dark">
<style type="text/css">
<!--
pre { white-space: pre-wrap; font-family: monospace; color: #000000; background-color: #a8a8a8; }
body { font-size:12pt; font-family: monospace; color: #000000; background-color: #a8a8a8; }
a { color:inherit; }
* { font-size:12pt; font-size: 1em; }
.CommentedCode { color: #8a8a8a; }
.LineNr { }
.Delimiter { color: #c000c0; }
.muFunction { color: #af5f00; text-decoration: underline; }
.muRegEdx { color: #878700; }
.muRegEbx { color: #8787af; }
.muRegEsi { color: #87d787; }
.muRegEdi { color: #87ffd7; }
.Constant { color: #008787; }
.Special { color: #ff6060; }
.PreProc { color: #c000c0; }
.Folded { color: #080808; background-color: #949494; }
.muTest { color: #5f8700; }
.muComment { color: #005faf; }
.muRegEax { color: #875f00; }
.muRegEcx { color: #af875f; }
-->
</style>
<script type='text/javascript'>
<!--
/* function to open any folds containing a jumped-to line before jumping to it */
function JumpToLine()
{
var lineNum;
lineNum = window.location.hash;
lineNum = lineNum.substr(1); /* strip off '#' */
if (lineNum.indexOf('L') == -1) {
lineNum = 'L'+lineNum;
}
var lineElem = document.getElementById(lineNum);
/* Always jump to new location even if the line was hidden inside a fold, or
* we corrected the raw number to a line ID.
*/
if (lineElem) {
lineElem.scrollIntoView(true);
}
return true;
}
if ('onhashchange' in window) {
window.onhashchange = JumpToLine;
}
-->
</script>
</head>
<body onload='JumpToLine();'>
<a href='https://github.com/akkartik/mu/blob/main/shell/infix.mu'>https://github.com/akkartik/mu/blob/main/shell/infix.mu</a>
<pre id='vimCodeElement'>
<span id="L1" class="LineNr"> 1 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='infix.mu.html#L1'>transform-infix</a></span> x-ah: (addr handle <a href='cell.mu.html#L1'>cell</a>), trace: (addr trace) <span class="Delimiter">{</span>
<span id="L2" class="LineNr"> 2 </span> <a href='trace.mu.html#L185'>trace-text</a> trace, <span class="Constant">&quot;infix&quot;</span>, <span class="Constant">&quot;transform infix&quot;</span>
<span id="L3" class="LineNr"> 3 </span> <a href='trace.mu.html#L239'>trace-lower</a> trace
<span id="L4" class="LineNr"> 4 </span><span class="CommentedCode">#? trace-text trace, &quot;infix&quot;, &quot;todo&quot;</span>
<span id="L5" class="LineNr"> 5 </span><span class="CommentedCode">#? draw-text-wrapping-right-then-down-from-cursor-over-full-screen 0/screen, &quot;a:&quot;, 2/fg 0/bg</span>
<span id="L6" class="LineNr"> 6 </span><span class="CommentedCode">#? dump-cell-from-cursor-over-full-screen x-ah, 7/fg 0/bg</span>
<span id="L7" class="LineNr"> 7 </span> <a href='infix.mu.html#L14'>transform-infix-2</a> x-ah, trace, <span class="Constant">1</span>/at-head-of-list
<span id="L8" class="LineNr"> 8 </span> <a href='trace.mu.html#L250'>trace-higher</a> trace
<span id="L9" class="LineNr"> 9 </span><span class="Delimiter">}</span>
<span id="L10" class="LineNr"> 10 </span>
<span id="L11" class="LineNr"> 11 </span><span class="muComment"># Break any symbols containing operators down in place into s-expressions</span>
<span id="L12" class="LineNr"> 12 </span><span class="muComment"># Transform (... sym op sym ...) greedily in place into (... (op sym sym) ...)</span>
<span id="L13" class="LineNr"> 13 </span><span class="muComment"># Lisp code typed in at the keyboard will never have cycles</span>
<span id="L14" class="LineNr"> 14 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='infix.mu.html#L14'>transform-infix-2</a></span> _x-ah: (addr handle <a href='cell.mu.html#L1'>cell</a>), trace: (addr trace), at-head-of-list?: boolean <span class="Delimiter">{</span>
<span id="L15" class="LineNr"> 15 </span> <span class="PreProc">var</span> x-ah/<span class="muRegEdi">edi</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> copy _x-ah
<span id="L16" class="LineNr"> 16 </span> <span class="PreProc">var</span> x/<span class="muRegEax">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *x-ah
<span id="L17" class="Folded"> 17 </span><span class="Folded">+-- 14 lines: # trace x-ah -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------</span>
<span id="L31" class="LineNr"> 31 </span> <a href='trace.mu.html#L239'>trace-lower</a> trace
<span id="L32" class="LineNr"> 32 </span><span class="CommentedCode">#? {</span>
<span id="L33" class="LineNr"> 33 </span><span class="CommentedCode">#? var foo/eax: int &lt;- copy x</span>
<span id="L34" class="LineNr"> 34 </span><span class="CommentedCode">#? draw-int32-hex-wrapping-right-then-down-from-cursor-over-full-screen 0/screen, foo, 7/fg 0/bg</span>
<span id="L35" class="LineNr"> 35 </span><span class="CommentedCode">#? }</span>
<span id="L36" class="LineNr"> 36 </span><span class="CommentedCode">#? dump-cell-from-cursor-over-full-screen x-ah, 5/fg 0/bg</span>
<span id="L37" class="LineNr"> 37 </span> <span class="muComment"># null? return</span>
<span id="L38" class="LineNr"> 38 </span> compare x, <span class="Constant">0</span>
<span id="L39" class="LineNr"> 39 </span> <span class="Delimiter">{</span>
<span id="L40" class="LineNr"> 40 </span> <span class="PreProc">break-if-!=</span>
<span id="L41" class="LineNr"> 41 </span> <a href='trace.mu.html#L250'>trace-higher</a> trace
<span id="L42" class="LineNr"> 42 </span> <a href='trace.mu.html#L185'>trace-text</a> trace, <span class="Constant">&quot;infix&quot;</span>, <span class="Constant">&quot;=&gt; NULL&quot;</span>
<span id="L43" class="LineNr"> 43 </span> <span class="PreProc">return</span>
<span id="L44" class="LineNr"> 44 </span> <span class="Delimiter">}</span>
<span id="L45" class="LineNr"> 45 </span> <span class="muComment"># nil? return</span>
<span id="L46" class="LineNr"> 46 </span> <span class="Delimiter">{</span>
<span id="L47" class="LineNr"> 47 </span> <span class="PreProc">var</span> <a href='print.mu.html#L347'>nil?</a>/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='print.mu.html#L347'>nil?</a> x
<span id="L48" class="LineNr"> 48 </span> compare <a href='print.mu.html#L347'>nil?</a>, <span class="Constant">0</span>/false
<span id="L49" class="LineNr"> 49 </span> <span class="PreProc">break-if-=</span>
<span id="L50" class="LineNr"> 50 </span> <a href='trace.mu.html#L250'>trace-higher</a> trace
<span id="L51" class="LineNr"> 51 </span> <a href='trace.mu.html#L185'>trace-text</a> trace, <span class="Constant">&quot;infix&quot;</span>, <span class="Constant">&quot;=&gt; nil&quot;</span>
<span id="L52" class="LineNr"> 52 </span> <span class="PreProc">return</span>
<span id="L53" class="LineNr"> 53 </span> <span class="Delimiter">}</span>
<span id="L54" class="LineNr"> 54 </span> <span class="PreProc">var</span> x-type/<span class="muRegEcx">ecx</span>: (addr int) <span class="Special">&lt;-</span> get x, <span class="PreProc">type</span>
<span id="L55" class="LineNr"> 55 </span> <span class="muComment"># symbol? maybe break it down into a pair</span>
<span id="L56" class="LineNr"> 56 </span> <span class="Delimiter">{</span>
<span id="L57" class="LineNr"> 57 </span> compare *x-type, <span class="Constant">2</span>/symbol
<span id="L58" class="LineNr"> 58 </span> <span class="PreProc">break-if-!=</span>
<span id="L59" class="LineNr"> 59 </span> <a href='infix.mu.html#L303'>tokenize-infix</a> x-ah, trace
<span id="L60" class="LineNr"> 60 </span> <span class="Delimiter">}</span>
<span id="L61" class="LineNr"> 61 </span> <span class="muComment"># not a pair? return</span>
<span id="L62" class="LineNr"> 62 </span><span class="CommentedCode">#? draw-text-wrapping-right-then-down-from-cursor-over-full-screen 0/screen, &quot;a&quot;, 4/fg 0/bg</span>
<span id="L63" class="LineNr"> 63 </span><span class="CommentedCode">#? draw-int32-decimal-wrapping-right-then-down-from-cursor-over-full-screen 0/screen, *x-type, 5/fg 0/bg</span>
<span id="L64" class="LineNr"> 64 </span> <span class="Delimiter">{</span>
<span id="L65" class="LineNr"> 65 </span> compare *x-type, <span class="Constant">0</span>/pair
<span id="L66" class="LineNr"> 66 </span> <span class="PreProc">break-if-=</span>
<span id="L67" class="LineNr"> 67 </span> <a href='trace.mu.html#L250'>trace-higher</a> trace
<span id="L68" class="Folded"> 68 </span><span class="Folded">+-- 15 lines: # trace &quot;=&gt; &quot; x-ah -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------</span>
<span id="L83" class="LineNr"> 83 </span><span class="CommentedCode">#? draw-text-wrapping-right-then-down-from-cursor-over-full-screen 0/screen, &quot;^&quot;, 4/fg 0/bg</span>
<span id="L84" class="LineNr"> 84 </span> <span class="PreProc">return</span>
<span id="L85" class="LineNr"> 85 </span> <span class="Delimiter">}</span>
<span id="L86" class="LineNr"> 86 </span><span class="CommentedCode">#? draw-text-wrapping-right-then-down-from-cursor-over-full-screen 0/screen, &quot;b&quot;, 4/fg 0/bg</span>
<span id="L87" class="LineNr"> 87 </span> <span class="muComment"># singleton operator? unwrap</span>
<span id="L88" class="LineNr"> 88 </span> <span class="Delimiter">{</span>
<span id="L89" class="LineNr"> 89 </span> <span class="PreProc">var</span> first-ah/<span class="muRegEcx">ecx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> get x, left
<span id="L90" class="LineNr"> 90 </span> <span class="Delimiter">{</span>
<span id="L91" class="LineNr"> 91 </span> <span class="PreProc">var</span> first/<span class="muRegEax">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *first-ah
<span id="L92" class="LineNr"> 92 </span> <span class="PreProc">var</span> infix?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='infix.mu.html#L409'>operator-symbol?</a> first
<span id="L93" class="LineNr"> 93 </span> compare infix?, <span class="Constant">0</span>/false
<span id="L94" class="LineNr"> 94 </span> <span class="Delimiter">}</span>
<span id="L95" class="LineNr"> 95 </span> <span class="PreProc">break-if-=</span>
<span id="L96" class="LineNr"> 96 </span> <span class="PreProc">var</span> rest-ah/<span class="muRegEax">eax</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> get x, right
<span id="L97" class="LineNr"> 97 </span> <span class="PreProc">var</span> rest/<span class="muRegEax">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *rest-ah
<span id="L98" class="LineNr"> 98 </span> <span class="PreProc">var</span> rest-nil?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='print.mu.html#L347'>nil?</a> rest
<span id="L99" class="LineNr"> 99 </span> compare rest-nil?, <span class="Constant">0</span>/false
<span id="L100" class="LineNr">100 </span> <span class="PreProc">break-if-=</span>
<span id="L101" class="LineNr">101 </span> copy-object first-ah, x-ah
<span id="L102" class="LineNr">102 </span> <a href='trace.mu.html#L250'>trace-higher</a> trace
<span id="L103" class="Folded">103 </span><span class="Folded">+-- 15 lines: # trace &quot;=&gt; &quot; x-ah -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------</span>
<span id="L118" class="LineNr">118 </span> <span class="PreProc">return</span>
<span id="L119" class="LineNr">119 </span> <span class="Delimiter">}</span>
<span id="L120" class="LineNr">120 </span><span class="CommentedCode">#? draw-text-wrapping-right-then-down-from-cursor-over-full-screen 0/screen, &quot;c&quot;, 4/fg 0/bg</span>
<span id="L121" class="LineNr">121 </span> <span class="muComment">## non-singleton pair</span>
<span id="L122" class="LineNr">122 </span> <span class="muComment"># try to &quot;pinch out&quot; (op expr op ...) into ((op expr) op ...)</span>
<span id="L123" class="LineNr">123 </span> <span class="muComment"># (op expr expr ...) =&gt; operator in prefix position; do nothing</span>
<span id="L124" class="LineNr">124 </span> <span class="Delimiter">{</span>
<span id="L125" class="LineNr">125 </span> compare at-head-of-list?, <span class="Constant">0</span>/false
<span id="L126" class="LineNr">126 </span> <span class="PreProc">break-if-=</span>
<span id="L127" class="LineNr">127 </span> <span class="PreProc">var</span> first-ah/<span class="muRegEcx">ecx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> get x, left
<span id="L128" class="LineNr">128 </span> <span class="PreProc">var</span> rest-ah/<span class="muRegEsi">esi</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> get x, right
<span id="L129" class="LineNr">129 </span> <span class="PreProc">var</span> first/<span class="muRegEax">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *first-ah
<span id="L130" class="LineNr">130 </span> <span class="PreProc">var</span> first-infix?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='infix.mu.html#L409'>operator-symbol?</a> first
<span id="L131" class="LineNr">131 </span> compare first-infix?, <span class="Constant">0</span>/false
<span id="L132" class="LineNr">132 </span> <span class="PreProc">break-if-=</span>
<span id="L133" class="LineNr">133 </span> <span class="PreProc">var</span> rest/<span class="muRegEax">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *rest-ah
<span id="L134" class="LineNr">134 </span> <span class="Delimiter">{</span>
<span id="L135" class="LineNr">135 </span> <span class="PreProc">var</span> continue?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='infix.mu.html#L273'>not-null-not-nil-pair?</a> rest
<span id="L136" class="LineNr">136 </span> compare continue?, <span class="Constant">0</span>/false
<span id="L137" class="LineNr">137 </span> <span class="Delimiter">}</span>
<span id="L138" class="LineNr">138 </span> <span class="PreProc">break-if-=</span>
<span id="L139" class="LineNr">139 </span> <span class="PreProc">var</span> second-ah/<span class="muRegEdx">edx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> get rest, left
<span id="L140" class="LineNr">140 </span> rest-ah <span class="Special">&lt;-</span> get rest, right
<span id="L141" class="LineNr">141 </span> <span class="PreProc">var</span> rest/<span class="muRegEax">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *rest-ah
<span id="L142" class="LineNr">142 </span> <span class="Delimiter">{</span>
<span id="L143" class="LineNr">143 </span> <span class="PreProc">var</span> continue?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='infix.mu.html#L273'>not-null-not-nil-pair?</a> rest
<span id="L144" class="LineNr">144 </span> compare continue?, <span class="Constant">0</span>/false
<span id="L145" class="LineNr">145 </span> <span class="Delimiter">}</span>
<span id="L146" class="LineNr">146 </span> <span class="PreProc">break-if-=</span>
<span id="L147" class="LineNr">147 </span> <span class="PreProc">var</span> third-ah/<span class="muRegEbx">ebx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> get rest, left
<span id="L148" class="LineNr">148 </span> <span class="Delimiter">{</span>
<span id="L149" class="LineNr">149 </span> <span class="PreProc">var</span> third/<span class="muRegEax">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *third-ah
<span id="L150" class="LineNr">150 </span> <span class="PreProc">var</span> third-is-operator?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='infix.mu.html#L409'>operator-symbol?</a> third
<span id="L151" class="LineNr">151 </span> compare third-is-operator?, <span class="Constant">0</span>/false
<span id="L152" class="LineNr">152 </span> <span class="Delimiter">}</span>
<span id="L153" class="LineNr">153 </span> <span class="PreProc">break-if-=</span>
<span id="L154" class="LineNr">154 </span> <span class="muComment"># if first and third are operators, bud out first two</span>
<span id="L155" class="LineNr">155 </span> <span class="PreProc">var</span> saved-rest-h: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L156" class="LineNr">156 </span> <span class="PreProc">var</span> saved-rest-ah/<span class="muRegEax">eax</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address saved-rest-h
<span id="L157" class="LineNr">157 </span> copy-object rest-ah, saved-rest-ah
<span id="L158" class="LineNr">158 </span> <a href='cell.mu.html#L121'>nil</a> rest-ah
<span id="L159" class="LineNr">159 </span> <span class="PreProc">var</span> result-h: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L160" class="LineNr">160 </span> <span class="PreProc">var</span> result-ah/<span class="muRegEax">eax</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address result-h
<span id="L161" class="LineNr">161 </span> <a href='cell.mu.html#L116'>new-pair</a> result-ah, *x-ah, saved-rest-h
<span id="L162" class="LineNr">162 </span> <span class="muComment"># save</span>
<span id="L163" class="LineNr">163 </span> copy-object result-ah, x-ah
<span id="L164" class="LineNr">164 </span> <span class="muComment"># there was a mutation; rerun</span>
<span id="L165" class="LineNr">165 </span> <a href='infix.mu.html#L14'>transform-infix-2</a> x-ah, trace, <span class="Constant">1</span>/at-head-of-list
<span id="L166" class="LineNr">166 </span> <span class="Delimiter">}</span>
<span id="L167" class="LineNr">167 </span> <span class="muComment"># try to &quot;pinch out&quot; (... expr op expr ...) pattern</span>
<span id="L168" class="LineNr">168 </span> $transform-infix-2:pinch: <span class="Delimiter">{</span>
<span id="L169" class="LineNr">169 </span> <span class="muComment"># scan past first three elements</span>
<span id="L170" class="LineNr">170 </span> <span class="PreProc">var</span> first-ah/<span class="muRegEcx">ecx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> get x, left
<span id="L171" class="LineNr">171 </span> <span class="PreProc">var</span> rest-ah/<span class="muRegEsi">esi</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> get x, right
<span id="L172" class="LineNr">172 </span> <span class="Delimiter">{</span>
<span id="L173" class="LineNr">173 </span> <span class="PreProc">var</span> <a href='infix.mu.html#L543'>quote-or-unquote?</a>/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='infix.mu.html#L543'>quote-or-unquote?</a> first-ah
<span id="L174" class="LineNr">174 </span> compare <a href='infix.mu.html#L543'>quote-or-unquote?</a>, <span class="Constant">0</span>/false
<span id="L175" class="LineNr">175 </span> <span class="Delimiter">}</span>
<span id="L176" class="LineNr">176 </span> <span class="PreProc">break-if-!=</span>
<span id="L177" class="LineNr">177 </span> <span class="PreProc">var</span> rest/<span class="muRegEax">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *rest-ah
<span id="L178" class="LineNr">178 </span> <span class="Delimiter">{</span>
<span id="L179" class="LineNr">179 </span> <span class="PreProc">var</span> continue?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='infix.mu.html#L273'>not-null-not-nil-pair?</a> rest
<span id="L180" class="LineNr">180 </span> compare continue?, <span class="Constant">0</span>/false
<span id="L181" class="LineNr">181 </span> <span class="Delimiter">}</span>
<span id="L182" class="LineNr">182 </span> <span class="PreProc">break-if-=</span>
<span id="L183" class="LineNr">183 </span><span class="CommentedCode">#? draw-text-wrapping-right-then-down-from-cursor-over-full-screen 0/screen, &quot;d&quot;, 4/fg 0/bg</span>
<span id="L184" class="LineNr">184 </span><span class="CommentedCode">#? dump-cell-from-cursor-over-full-screen rest-ah, 7/fg 0/bg</span>
<span id="L185" class="LineNr">185 </span> <span class="PreProc">var</span> second-ah/<span class="muRegEdx">edx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> get rest, left
<span id="L186" class="LineNr">186 </span> rest-ah <span class="Special">&lt;-</span> get rest, right
<span id="L187" class="LineNr">187 </span> <span class="PreProc">var</span> rest/<span class="muRegEax">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *rest-ah
<span id="L188" class="LineNr">188 </span> <span class="Delimiter">{</span>
<span id="L189" class="LineNr">189 </span> <span class="PreProc">var</span> continue?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='infix.mu.html#L273'>not-null-not-nil-pair?</a> rest
<span id="L190" class="LineNr">190 </span> compare continue?, <span class="Constant">0</span>/false
<span id="L191" class="LineNr">191 </span> <span class="Delimiter">}</span>
<span id="L192" class="LineNr">192 </span> <span class="PreProc">break-if-=</span>
<span id="L193" class="LineNr">193 </span><span class="CommentedCode">#? draw-text-wrapping-right-then-down-from-cursor-over-full-screen 0/screen, &quot;e&quot;, 4/fg 0/bg</span>
<span id="L194" class="LineNr">194 </span> <span class="PreProc">var</span> third-ah/<span class="muRegEbx">ebx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> get rest, left
<span id="L195" class="LineNr">195 </span> rest-ah <span class="Special">&lt;-</span> get rest, right
<span id="L196" class="LineNr">196 </span> <span class="muComment"># if second is not an operator, break</span>
<span id="L197" class="LineNr">197 </span> <span class="Delimiter">{</span>
<span id="L198" class="LineNr">198 </span> <span class="PreProc">var</span> second/<span class="muRegEax">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *second-ah
<span id="L199" class="LineNr">199 </span> <span class="PreProc">var</span> infix?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='infix.mu.html#L409'>operator-symbol?</a> second
<span id="L200" class="LineNr">200 </span> compare infix?, <span class="Constant">0</span>/false
<span id="L201" class="LineNr">201 </span> <span class="Delimiter">}</span>
<span id="L202" class="LineNr">202 </span> <span class="PreProc">break-if-=</span>
<span id="L203" class="LineNr">203 </span><span class="CommentedCode">#? draw-text-wrapping-right-then-down-from-cursor-over-full-screen 0/screen, &quot;f&quot;, 4/fg 0/bg</span>
<span id="L204" class="LineNr">204 </span> <span class="muComment"># swap the top 2</span>
<span id="L205" class="LineNr">205 </span> <a href='infix.mu.html#L295'>swap-cells</a> first-ah, second-ah
<span id="L206" class="LineNr">206 </span> <span class="muComment">## if we're at the head of the list and there's just three elements, stop there</span>
<span id="L207" class="LineNr">207 </span> <span class="Delimiter">{</span>
<span id="L208" class="LineNr">208 </span> compare at-head-of-list?, <span class="Constant">0</span>/false
<span id="L209" class="LineNr">209 </span> <span class="PreProc">break-if-=</span>
<span id="L210" class="LineNr">210 </span> rest <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *rest-ah
<span id="L211" class="LineNr">211 </span> <span class="PreProc">var</span> rest-nil?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='print.mu.html#L347'>nil?</a> rest
<span id="L212" class="LineNr">212 </span> compare rest-nil?, <span class="Constant">0</span>/false
<span id="L213" class="LineNr">213 </span> <span class="PreProc">break-if-!=</span> $transform-infix-2:pinch
<span id="L214" class="LineNr">214 </span> <span class="Delimiter">}</span>
<span id="L215" class="LineNr">215 </span> <span class="muComment">## otherwise perform a more complex 'rotation'</span>
<span id="L216" class="LineNr">216 </span><span class="CommentedCode">#? draw-text-wrapping-right-then-down-from-cursor-over-full-screen 0/screen, &quot;g&quot;, 4/fg 0/bg</span>
<span id="L217" class="LineNr">217 </span> <span class="muComment"># save and clear third-&gt;right</span>
<span id="L218" class="LineNr">218 </span> <span class="PreProc">var</span> saved-rest-h: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L219" class="LineNr">219 </span> <span class="PreProc">var</span> saved-rest-ah/<span class="muRegEax">eax</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address saved-rest-h
<span id="L220" class="LineNr">220 </span> copy-object rest-ah, saved-rest-ah
<span id="L221" class="LineNr">221 </span> <a href='cell.mu.html#L121'>nil</a> rest-ah
<span id="L222" class="LineNr">222 </span> <span class="muComment"># create new-node out of first..third and rest</span>
<span id="L223" class="LineNr">223 </span> <span class="PreProc">var</span> result-h: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L224" class="LineNr">224 </span> <span class="PreProc">var</span> result-ah/<span class="muRegEax">eax</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address result-h
<span id="L225" class="LineNr">225 </span> <a href='cell.mu.html#L116'>new-pair</a> result-ah, *x-ah, saved-rest-h
<span id="L226" class="LineNr">226 </span> <span class="muComment"># save</span>
<span id="L227" class="LineNr">227 </span> copy-object result-ah, x-ah
<span id="L228" class="LineNr">228 </span> <span class="muComment"># there was a mutation; rerun</span>
<span id="L229" class="LineNr">229 </span> <a href='infix.mu.html#L14'>transform-infix-2</a> x-ah, trace, <span class="Constant">1</span>/at-head-of-list
<span id="L230" class="LineNr">230 </span> <span class="PreProc">return</span>
<span id="L231" class="LineNr">231 </span> <span class="Delimiter">}</span>
<span id="L232" class="LineNr">232 </span> <span class="muComment"># recurse</span>
<span id="L233" class="LineNr">233 </span><span class="CommentedCode">#? dump-cell-from-cursor-over-full-screen x-ah, 1/fg 0/bg</span>
<span id="L234" class="LineNr">234 </span> <span class="PreProc">var</span> left-ah/<span class="muRegEcx">ecx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> get x, left
<span id="L235" class="LineNr">235 </span><span class="CommentedCode">#? draw-text-wrapping-right-then-down-from-cursor-over-full-screen 0/screen, &quot;x&quot;, 1/fg 0/bg</span>
<span id="L236" class="LineNr">236 </span><span class="CommentedCode">#? dump-cell-from-cursor-over-full-screen left-ah, 2/fg 0/bg</span>
<span id="L237" class="LineNr">237 </span> <a href='infix.mu.html#L14'>transform-infix-2</a> left-ah, trace, <span class="Constant">1</span>/at-head-of-list
<span id="L238" class="LineNr">238 </span> <span class="PreProc">var</span> right-ah/<span class="muRegEdx">edx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> get x, right
<span id="L239" class="LineNr">239 </span><span class="CommentedCode">#? draw-text-wrapping-right-then-down-from-cursor-over-full-screen 0/screen, &quot;y&quot;, 1/fg 0/bg</span>
<span id="L240" class="LineNr">240 </span><span class="CommentedCode">#? dump-cell-from-cursor-over-full-screen right-ah, 3/fg 0/bg</span>
<span id="L241" class="LineNr">241 </span> <span class="PreProc">var</span> right-at-head-of-list?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> copy at-head-of-list?
<span id="L242" class="LineNr">242 </span> <span class="Delimiter">{</span>
<span id="L243" class="LineNr">243 </span> compare right-at-head-of-list?, <span class="Constant">0</span>/false
<span id="L244" class="LineNr">244 </span> <span class="PreProc">break-if-=</span>
<span id="L245" class="LineNr">245 </span> <span class="muComment"># if left is a quote or unquote, cdr is still head of list</span>
<span id="L246" class="LineNr">246 </span> <span class="Delimiter">{</span>
<span id="L247" class="LineNr">247 </span> <span class="PreProc">var</span> left-is-quote-or-unquote?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='infix.mu.html#L543'>quote-or-unquote?</a> left-ah
<span id="L248" class="LineNr">248 </span> compare left-is-quote-or-unquote?, <span class="Constant">0</span>/false
<span id="L249" class="LineNr">249 </span> <span class="Delimiter">}</span>
<span id="L250" class="LineNr">250 </span> <span class="PreProc">break-if-!=</span>
<span id="L251" class="LineNr">251 </span> right-at-head-of-list? <span class="Special">&lt;-</span> copy <span class="Constant">0</span>/false
<span id="L252" class="LineNr">252 </span> <span class="Delimiter">}</span>
<span id="L253" class="LineNr">253 </span> <a href='infix.mu.html#L14'>transform-infix-2</a> right-ah, trace, right-at-head-of-list?
<span id="L254" class="LineNr">254 </span><span class="CommentedCode">#? draw-text-wrapping-right-then-down-from-cursor-over-full-screen 0/screen, &quot;z&quot;, 1/fg 0/bg</span>
<span id="L255" class="LineNr">255 </span> <a href='trace.mu.html#L250'>trace-higher</a> trace
<span id="L256" class="Folded">256 </span><span class="Folded">+-- 15 lines: # trace &quot;=&gt; &quot; x-ah -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------</span>
<span id="L271" class="LineNr">271 </span><span class="Delimiter">}</span>
<span id="L272" class="LineNr">272 </span>
<span id="L273" class="LineNr">273 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='infix.mu.html#L273'>not-null-not-nil-pair?</a></span> _x: (addr <a href='cell.mu.html#L1'>cell</a>)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: boolean <span class="Delimiter">{</span>
<span id="L274" class="LineNr">274 </span> <span class="PreProc">var</span> x/<span class="muRegEsi">esi</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> copy _x
<span id="L275" class="LineNr">275 </span> compare x, <span class="Constant">0</span>
<span id="L276" class="LineNr">276 </span> <span class="Delimiter">{</span>
<span id="L277" class="LineNr">277 </span> <span class="PreProc">break-if-!=</span>
<span id="L278" class="LineNr">278 </span> <span class="PreProc">return</span> <span class="Constant">0</span>/false
<span id="L279" class="LineNr">279 </span> <span class="Delimiter">}</span>
<span id="L280" class="LineNr">280 </span> <span class="PreProc">var</span> x-type/<span class="muRegEax">eax</span>: (addr int) <span class="Special">&lt;-</span> get x, <span class="PreProc">type</span>
<span id="L281" class="LineNr">281 </span> compare *x-type, <span class="Constant">0</span>/pair
<span id="L282" class="LineNr">282 </span> <span class="Delimiter">{</span>
<span id="L283" class="LineNr">283 </span> <span class="PreProc">break-if-=</span>
<span id="L284" class="LineNr">284 </span> <span class="PreProc">return</span> <span class="Constant">0</span>/false
<span id="L285" class="LineNr">285 </span> <span class="Delimiter">}</span>
<span id="L286" class="LineNr">286 </span> <span class="PreProc">var</span> <a href='print.mu.html#L347'>nil?</a>/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='print.mu.html#L347'>nil?</a> x
<span id="L287" class="LineNr">287 </span> compare <a href='print.mu.html#L347'>nil?</a>, <span class="Constant">0</span>/false
<span id="L288" class="LineNr">288 </span> <span class="Delimiter">{</span>
<span id="L289" class="LineNr">289 </span> <span class="PreProc">break-if-=</span>
<span id="L290" class="LineNr">290 </span> <span class="PreProc">return</span> <span class="Constant">0</span>/false
<span id="L291" class="LineNr">291 </span> <span class="Delimiter">}</span>
<span id="L292" class="LineNr">292 </span> <span class="PreProc">return</span> <span class="Constant">1</span>/true
<span id="L293" class="LineNr">293 </span><span class="Delimiter">}</span>
<span id="L294" class="LineNr">294 </span>
<span id="L295" class="LineNr">295 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='infix.mu.html#L295'>swap-cells</a></span> a-ah: (addr handle <a href='cell.mu.html#L1'>cell</a>), b-ah: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Delimiter">{</span>
<span id="L296" class="LineNr">296 </span> <span class="PreProc">var</span> tmp-h: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L297" class="LineNr">297 </span> <span class="PreProc">var</span> tmp-ah/<span class="muRegEax">eax</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address tmp-h
<span id="L298" class="LineNr">298 </span> copy-object a-ah, tmp-ah
<span id="L299" class="LineNr">299 </span> copy-object b-ah, a-ah
<span id="L300" class="LineNr">300 </span> copy-object tmp-ah, b-ah
<span id="L301" class="LineNr">301 </span><span class="Delimiter">}</span>
<span id="L302" class="LineNr">302 </span>
<span id="L303" class="LineNr">303 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='infix.mu.html#L303'>tokenize-infix</a></span> _sym-ah: (addr handle <a href='cell.mu.html#L1'>cell</a>), trace: (addr trace) <span class="Delimiter">{</span>
<span id="L304" class="LineNr">304 </span> <span class="PreProc">var</span> sym-ah/<span class="muRegEax">eax</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> copy _sym-ah
<span id="L305" class="LineNr">305 </span> <span class="PreProc">var</span> sym/<span class="muRegEax">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *sym-ah
<span id="L306" class="LineNr">306 </span> <span class="PreProc">var</span> sym-data-ah/<span class="muRegEax">eax</span>: (addr handle stream byte) <span class="Special">&lt;-</span> get sym, text-data
<span id="L307" class="LineNr">307 </span> <span class="PreProc">var</span> _sym-data/<span class="muRegEax">eax</span>: (addr stream byte) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *sym-data-ah
<span id="L308" class="LineNr">308 </span> <span class="PreProc">var</span> sym-data/<span class="muRegEsi">esi</span>: (addr stream byte) <span class="Special">&lt;-</span> copy _sym-data
<span id="L309" class="LineNr">309 </span> <a href='../106stream.subx.html#L59'>rewind-stream</a> sym-data
<span id="L310" class="LineNr">310 </span> <span class="muComment"># read sym into a gap buffer and insert spaces in a few places</span>
<span id="L311" class="LineNr">311 </span> <span class="PreProc">var</span> buffer-storage: <a href='gap-buffer.mu.html#L3'>gap-buffer</a>
<span id="L312" class="LineNr">312 </span> <span class="PreProc">var</span> buffer/<span class="muRegEdi">edi</span>: (addr <a href='gap-buffer.mu.html#L3'>gap-buffer</a>) <span class="Special">&lt;-</span> address buffer-storage
<span id="L313" class="LineNr">313 </span> <a href='gap-buffer.mu.html#L11'>initialize-gap-buffer</a> buffer, <span class="Constant">0x40</span>/max-symbol-size
<span id="L314" class="LineNr">314 </span> <span class="muComment"># scan for first non-$</span>
<span id="L315" class="LineNr">315 </span> <span class="PreProc">var</span> g/<span class="muRegEax">eax</span>: grapheme <span class="Special">&lt;-</span> <a href='../403unicode.mu.html#L92'>read-grapheme</a> sym-data
<span id="L316" class="LineNr">316 </span> <a href='gap-buffer.mu.html#L441'>add-grapheme-at-gap</a> buffer, g
<span id="L317" class="LineNr">317 </span> <span class="Delimiter">{</span>
<span id="L318" class="LineNr">318 </span> compare g, <span class="Constant">0x24</span>/dollar
<span id="L319" class="LineNr">319 </span> <span class="PreProc">break-if-!=</span>
<span id="L320" class="LineNr">320 </span> <span class="Delimiter">{</span>
<span id="L321" class="LineNr">321 </span> <span class="PreProc">var</span> done?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='../309stream.subx.html#L6'>stream-empty?</a> sym-data
<span id="L322" class="LineNr">322 </span> compare done?, <span class="Constant">0</span>/false
<span id="L323" class="LineNr">323 </span> <span class="PreProc">break-if-=</span>
<span id="L324" class="LineNr">324 </span> <span class="PreProc">return</span> <span class="muComment"># symbol is all '$'s; do nothing</span>
<span id="L325" class="LineNr">325 </span> <span class="Delimiter">}</span>
<span id="L326" class="LineNr">326 </span> g <span class="Special">&lt;-</span> <a href='../403unicode.mu.html#L92'>read-grapheme</a> sym-data
<span id="L327" class="LineNr">327 </span> <a href='gap-buffer.mu.html#L441'>add-grapheme-at-gap</a> buffer, g
<span id="L328" class="LineNr">328 </span> <span class="PreProc">loop</span>
<span id="L329" class="LineNr">329 </span> <span class="Delimiter">}</span>
<span id="L330" class="LineNr">330 </span> <span class="PreProc">var</span> tokenization-needed?: boolean
<span id="L331" class="LineNr">331 </span> <span class="PreProc">var</span> _operator-so-far?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='infix.mu.html#L456'>operator-grapheme?</a> g
<span id="L332" class="LineNr">332 </span> <span class="PreProc">var</span> operator-so-far?/<span class="muRegEcx">ecx</span>: boolean <span class="Special">&lt;-</span> copy _operator-so-far?
<span id="L333" class="LineNr">333 </span> <span class="Delimiter">{</span>
<span id="L334" class="LineNr">334 </span> <span class="PreProc">var</span> done?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='../309stream.subx.html#L6'>stream-empty?</a> sym-data
<span id="L335" class="LineNr">335 </span> compare done?, <span class="Constant">0</span>/false
<span id="L336" class="LineNr">336 </span> <span class="PreProc">break-if-!=</span>
<span id="L337" class="LineNr">337 </span> <span class="PreProc">var</span> g/<span class="muRegEax">eax</span>: grapheme <span class="Special">&lt;-</span> <a href='../403unicode.mu.html#L92'>read-grapheme</a> sym-data
<span id="L338" class="LineNr">338 </span> <span class="Delimiter">{</span>
<span id="L339" class="LineNr">339 </span> <span class="PreProc">var</span> curr-operator?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='infix.mu.html#L456'>operator-grapheme?</a> g
<span id="L340" class="LineNr">340 </span> compare curr-operator?, operator-so-far?
<span id="L341" class="LineNr">341 </span> <span class="PreProc">break-if-=</span>
<span id="L342" class="LineNr">342 </span> <span class="muComment"># state change; insert a space</span>
<span id="L343" class="LineNr">343 </span> <a href='gap-buffer.mu.html#L441'>add-grapheme-at-gap</a> buffer, <span class="Constant">0x20</span>/space
<span id="L344" class="LineNr">344 </span> operator-so-far? <span class="Special">&lt;-</span> copy curr-operator?
<span id="L345" class="LineNr">345 </span> copy-to tokenization-needed?, <span class="Constant">1</span>/true
<span id="L346" class="LineNr">346 </span> <span class="Delimiter">}</span>
<span id="L347" class="LineNr">347 </span> <a href='gap-buffer.mu.html#L441'>add-grapheme-at-gap</a> buffer, g
<span id="L348" class="LineNr">348 </span> <span class="PreProc">loop</span>
<span id="L349" class="LineNr">349 </span> <span class="Delimiter">}</span>
<span id="L350" class="LineNr">350 </span> compare tokenization-needed?, <span class="Constant">0</span>/false
<span id="L351" class="LineNr">351 </span> <span class="PreProc">break-if-=</span>
<span id="L352" class="LineNr">352 </span><span class="CommentedCode">#? {</span>
<span id="L353" class="LineNr">353 </span><span class="CommentedCode">#? var dummy1/eax: int &lt;- copy 0</span>
<span id="L354" class="LineNr">354 </span><span class="CommentedCode">#? var dummy2/ecx: int &lt;- copy 0</span>
<span id="L355" class="LineNr">355 </span><span class="CommentedCode">#? dummy1, dummy2 &lt;- render-gap-buffer-wrapping-right-then-down 0/screen, buffer, 0x20/xmin 5/ymin, 0x80/xmax 0x30/ymax, 0/no-cursor, 3/fg 0/bg</span>
<span id="L356" class="LineNr">356 </span><span class="CommentedCode">#? {</span>
<span id="L357" class="LineNr">357 </span><span class="CommentedCode">#? loop</span>
<span id="L358" class="LineNr">358 </span><span class="CommentedCode">#? }</span>
<span id="L359" class="LineNr">359 </span><span class="CommentedCode">#? }</span>
<span id="L360" class="LineNr">360 </span> <span class="muComment"># recursively process buffer</span>
<span id="L361" class="LineNr">361 </span> <span class="muComment"># this time we're guaranteed we won't enter tokenize-infix</span>
<span id="L362" class="LineNr">362 </span> <a href='read.mu.html#L1'>read-cell</a> buffer, _sym-ah, trace
<span id="L363" class="LineNr">363 </span><span class="Delimiter">}</span>
<span id="L364" class="LineNr">364 </span>
<span id="L365" class="LineNr">365 </span><span class="PreProc">fn</span> <span class="muTest"><a href='infix.mu.html#L365'>test-infix</a></span> <span class="Delimiter">{</span>
<span id="L366" class="LineNr">366 </span> <a href='infix.mu.html#L575'>check-infix</a> <span class="Constant">&quot;abc&quot;</span>, <span class="Constant">&quot;abc&quot;</span>, <span class="Constant">&quot;F - <a href='infix.mu.html#L365'>test-infix</a>/regular-symbol&quot;</span>
<span id="L367" class="LineNr">367 </span> <a href='infix.mu.html#L575'>check-infix</a> <span class="Constant">&quot;-3&quot;</span>, <span class="Constant">&quot;-3&quot;</span>, <span class="Constant">&quot;F - <a href='infix.mu.html#L365'>test-infix</a>/negative-integer-literal&quot;</span>
<span id="L368" class="LineNr">368 </span> <a href='infix.mu.html#L575'>check-infix</a> <span class="Constant">&quot;[a b+c]&quot;</span>, <span class="Constant">&quot;[a b+c]&quot;</span>, <span class="Constant">&quot;F - <a href='infix.mu.html#L365'>test-infix</a>/string-literal&quot;</span>
<span id="L369" class="LineNr">369 </span> <a href='infix.mu.html#L575'>check-infix</a> <span class="Constant">&quot;$&quot;</span>, <span class="Constant">&quot;$&quot;</span>, <span class="Constant">&quot;F - <a href='infix.mu.html#L365'>test-infix</a>/dollar-sym&quot;</span>
<span id="L370" class="LineNr">370 </span> <a href='infix.mu.html#L575'>check-infix</a> <span class="Constant">&quot;$$&quot;</span>, <span class="Constant">&quot;$$&quot;</span>, <span class="Constant">&quot;F - <a href='infix.mu.html#L365'>test-infix</a>/dollar-sym-2&quot;</span>
<span id="L371" class="LineNr">371 </span> <a href='infix.mu.html#L575'>check-infix</a> <span class="Constant">&quot;$a&quot;</span>, <span class="Constant">&quot;$a&quot;</span>, <span class="Constant">&quot;F - <a href='infix.mu.html#L365'>test-infix</a>/dollar-var&quot;</span>
<span id="L372" class="LineNr">372 </span> <a href='infix.mu.html#L575'>check-infix</a> <span class="Constant">&quot;$+&quot;</span>, <span class="Constant">&quot;$+&quot;</span>, <span class="Constant">&quot;F - <a href='infix.mu.html#L365'>test-infix</a>/dollar-operator&quot;</span>
<span id="L373" class="LineNr">373 </span> <a href='infix.mu.html#L575'>check-infix</a> <span class="Constant">&quot;(+)&quot;</span>, <span class="Constant">&quot;+&quot;</span>, <span class="Constant">&quot;F - <a href='infix.mu.html#L365'>test-infix</a>/operator-without-args&quot;</span>
<span id="L374" class="LineNr">374 </span> <a href='infix.mu.html#L575'>check-infix</a> <span class="Constant">&quot;(= (+) 3)&quot;</span>, <span class="Constant">&quot;(= + 3)&quot;</span>, <span class="Constant">&quot;F - <a href='infix.mu.html#L365'>test-infix</a>/operator-without-args-2&quot;</span>
<span id="L375" class="LineNr">375 </span> <a href='infix.mu.html#L575'>check-infix</a> <span class="Constant">&quot;($+)&quot;</span>, <span class="Constant">&quot;$+&quot;</span>, <span class="Constant">&quot;F - <a href='infix.mu.html#L365'>test-infix</a>/dollar-operator-without-args&quot;</span>
<span id="L376" class="LineNr">376 </span> <a href='infix.mu.html#L575'>check-infix</a> <span class="Constant">&quot;',(a + b)&quot;</span>, <span class="Constant">&quot;',(+ a b)&quot;</span>, <span class="Constant">&quot;F - <a href='infix.mu.html#L365'>test-infix</a>/nested-quotes&quot;</span>
<span id="L377" class="LineNr">377 </span> <a href='infix.mu.html#L575'>check-infix</a> <span class="Constant">&quot;',(+)&quot;</span>, <span class="Constant">&quot;',+&quot;</span>, <span class="Constant">&quot;F - <a href='infix.mu.html#L365'>test-infix</a>/nested-quotes-2&quot;</span>
<span id="L378" class="LineNr">378 </span> <a href='infix.mu.html#L575'>check-infix</a> <span class="Constant">&quot;(a + b)&quot;</span>, <span class="Constant">&quot;(+ a b)&quot;</span>, <span class="Constant">&quot;F - <a href='infix.mu.html#L365'>test-infix</a>/simple-list&quot;</span>
<span id="L379" class="LineNr">379 </span> <a href='infix.mu.html#L575'>check-infix</a> <span class="Constant">&quot;(a (+) b)&quot;</span>, <span class="Constant">&quot;(a + b)&quot;</span>, <span class="Constant">&quot;F - <a href='infix.mu.html#L365'>test-infix</a>/wrapped-operator&quot;</span>
<span id="L380" class="LineNr">380 </span> <a href='infix.mu.html#L575'>check-infix</a> <span class="Constant">&quot;(+ a b)&quot;</span>, <span class="Constant">&quot;(+ a b)&quot;</span>, <span class="Constant">&quot;F - <a href='infix.mu.html#L365'>test-infix</a>/prefix-operator&quot;</span>
<span id="L381" class="LineNr">381 </span> <a href='infix.mu.html#L575'>check-infix</a> <span class="Constant">&quot;(a . b)&quot;</span>, <span class="Constant">&quot;(a . b)&quot;</span>, <span class="Constant">&quot;F - <a href='infix.mu.html#L365'>test-infix</a>/dot-operator&quot;</span>
<span id="L382" class="LineNr">382 </span> <a href='infix.mu.html#L575'>check-infix</a> <span class="Constant">&quot;(a b . c)&quot;</span>, <span class="Constant">&quot;(a b . c)&quot;</span>, <span class="Constant">&quot;F - <a href='infix.mu.html#L365'>test-infix</a>/dotted-list&quot;</span>
<span id="L383" class="LineNr">383 </span> <a href='infix.mu.html#L575'>check-infix</a> <span class="Constant">&quot;(+ . b)&quot;</span>, <span class="Constant">&quot;(+ . b)&quot;</span>, <span class="Constant">&quot;F - <a href='infix.mu.html#L365'>test-infix</a>/dotted-list-with-operator&quot;</span>
<span id="L384" class="LineNr">384 </span> <a href='infix.mu.html#L575'>check-infix</a> <span class="Constant">&quot;(+ a)&quot;</span>, <span class="Constant">&quot;(+ a)&quot;</span>, <span class="Constant">&quot;F - <a href='infix.mu.html#L365'>test-infix</a>/unary-operator&quot;</span>
<span id="L385" class="LineNr">385 </span> <a href='infix.mu.html#L575'>check-infix</a> <span class="Constant">&quot;((a + b))&quot;</span>, <span class="Constant">&quot;((+ a b))&quot;</span>, <span class="Constant">&quot;F - <a href='infix.mu.html#L365'>test-infix</a>/nested-list&quot;</span>
<span id="L386" class="LineNr">386 </span> <a href='infix.mu.html#L575'>check-infix</a> <span class="Constant">&quot;(do (a + b))&quot;</span>, <span class="Constant">&quot;(do (+ a b))&quot;</span>, <span class="Constant">&quot;F - <a href='infix.mu.html#L365'>test-infix</a>/nested-list-2&quot;</span>
<span id="L387" class="LineNr">387 </span> <a href='infix.mu.html#L575'>check-infix</a> <span class="Constant">&quot;(a = (a + 1))&quot;</span>, <span class="Constant">&quot;(= a (+ a 1))&quot;</span>, <span class="Constant">&quot;F - <a href='infix.mu.html#L365'>test-infix</a>/nested-list-3&quot;</span>
<span id="L388" class="LineNr">388 </span> <a href='infix.mu.html#L575'>check-infix</a> <span class="Constant">&quot;(a + b + c)&quot;</span>, <span class="Constant">&quot;(+ (+ a b) c)&quot;</span>, <span class="Constant">&quot;F - <a href='infix.mu.html#L365'>test-infix</a>/left-associative&quot;</span>
<span id="L389" class="LineNr">389 </span> <a href='infix.mu.html#L575'>check-infix</a> <span class="Constant">&quot;(f a + b)&quot;</span>, <span class="Constant">&quot;(f (+ a b))&quot;</span>, <span class="Constant">&quot;F - <a href='infix.mu.html#L365'>test-infix</a>/higher-precedence-than-call&quot;</span>
<span id="L390" class="LineNr">390 </span> <a href='infix.mu.html#L575'>check-infix</a> <span class="Constant">&quot;(f a + b c + d)&quot;</span>, <span class="Constant">&quot;(f (+ a b) (+ c d))&quot;</span>, <span class="Constant">&quot;F - <a href='infix.mu.html#L365'>test-infix</a>/multiple&quot;</span>
<span id="L391" class="LineNr">391 </span> <a href='infix.mu.html#L575'>check-infix</a> <span class="Constant">&quot;+a&quot;</span>, <span class="Constant">&quot;(+ a)&quot;</span>, <span class="Constant">&quot;F - <a href='infix.mu.html#L365'>test-infix</a>/unary-operator-2&quot;</span>
<span id="L392" class="LineNr">392 </span> <a href='infix.mu.html#L575'>check-infix</a> <span class="Constant">&quot;(+a)&quot;</span>, <span class="Constant">&quot;((+ a))&quot;</span>, <span class="Constant">&quot;F - <a href='infix.mu.html#L365'>test-infix</a>/unary-operator-3&quot;</span>
<span id="L393" class="LineNr">393 </span> <a href='infix.mu.html#L575'>check-infix</a> <span class="Constant">&quot;-a&quot;</span>, <span class="Constant">&quot;(- a)&quot;</span>, <span class="Constant">&quot;F - <a href='infix.mu.html#L365'>test-infix</a>/unary-operator-4&quot;</span>
<span id="L394" class="LineNr">394 </span> <a href='infix.mu.html#L575'>check-infix</a> <span class="Constant">&quot;a+b&quot;</span>, <span class="Constant">&quot;(+ a b)&quot;</span>, <span class="Constant">&quot;F - <a href='infix.mu.html#L365'>test-infix</a>/no-spaces&quot;</span>
<span id="L395" class="LineNr">395 </span> <a href='infix.mu.html#L575'>check-infix</a> <span class="Constant">&quot;3+1&quot;</span>, <span class="Constant">&quot;(+ 3 1)&quot;</span>, <span class="Constant">&quot;F - <a href='infix.mu.html#L365'>test-infix</a>/no-spaces-starting-with-digit&quot;</span>
<span id="L396" class="LineNr">396 </span> <a href='infix.mu.html#L575'>check-infix</a> <span class="Constant">&quot;',a+b&quot;</span>, <span class="Constant">&quot;',(+ a b)&quot;</span>, <span class="Constant">&quot;F - <a href='infix.mu.html#L365'>test-infix</a>/no-spaces-with-nested-quotes&quot;</span>
<span id="L397" class="LineNr">397 </span> <a href='infix.mu.html#L575'>check-infix</a> <span class="Constant">&quot;$a+b&quot;</span>, <span class="Constant">&quot;(+ $a b)&quot;</span>, <span class="Constant">&quot;F - <a href='infix.mu.html#L365'>test-infix</a>/no-spaces-2&quot;</span>
<span id="L398" class="LineNr">398 </span> <a href='infix.mu.html#L575'>check-infix</a> <span class="Constant">&quot;-a+b&quot;</span>, <span class="Constant">&quot;(+ (- a) b)&quot;</span>, <span class="Constant">&quot;F - <a href='infix.mu.html#L365'>test-infix</a>/unary-over-binary&quot;</span>
<span id="L399" class="LineNr">399 </span> <a href='infix.mu.html#L575'>check-infix</a> <span class="Constant">&quot;~a+b&quot;</span>, <span class="Constant">&quot;(+ (~ a) b)&quot;</span>, <span class="Constant">&quot;F - <a href='infix.mu.html#L365'>test-infix</a>/unary-complement&quot;</span>
<span id="L400" class="LineNr">400 </span> <a href='infix.mu.html#L575'>check-infix</a> <span class="Constant">&quot;(n * n-1)&quot;</span>, <span class="Constant">&quot;(* n (- n 1))&quot;</span>, <span class="Constant">&quot;F - <a href='infix.mu.html#L365'>test-infix</a>/no-spaces-over-spaces&quot;</span>
<span id="L401" class="LineNr">401 </span> <a href='infix.mu.html#L575'>check-infix</a> <span class="Constant">&quot;`(a + b)&quot;</span>, <span class="Constant">&quot;`(+ a b)&quot;</span>, <span class="Constant">&quot;F - <a href='infix.mu.html#L365'>test-infix</a>/backquote&quot;</span>
<span id="L402" class="LineNr">402 </span> <a href='infix.mu.html#L575'>check-infix</a> <span class="Constant">&quot;`(+ a b)&quot;</span>, <span class="Constant">&quot;`(+ a b)&quot;</span>, <span class="Constant">&quot;F - <a href='infix.mu.html#L365'>test-infix</a>/backquote-2&quot;</span>
<span id="L403" class="LineNr">403 </span> <a href='infix.mu.html#L575'>check-infix</a> <span class="Constant">&quot;,@a+b&quot;</span>, <span class="Constant">&quot;,@(+ a b)&quot;</span>, <span class="Constant">&quot;F - <a href='infix.mu.html#L365'>test-infix</a>/unquote-splice&quot;</span>
<span id="L404" class="LineNr">404 </span> <a href='infix.mu.html#L575'>check-infix</a> <span class="Constant">&quot;,@(a + b)&quot;</span>, <span class="Constant">&quot;,@(+ a b)&quot;</span>, <span class="Constant">&quot;F - <a href='infix.mu.html#L365'>test-infix</a>/unquote-splice-2&quot;</span>
<span id="L405" class="LineNr">405 </span><span class="Delimiter">}</span>
<span id="L406" class="LineNr">406 </span>
<span id="L407" class="LineNr">407 </span><span class="muComment"># helpers</span>
<span id="L408" class="LineNr">408 </span>
<span id="L409" class="LineNr">409 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='infix.mu.html#L409'>operator-symbol?</a></span> _x: (addr <a href='cell.mu.html#L1'>cell</a>)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: boolean <span class="Delimiter">{</span>
<span id="L410" class="LineNr">410 </span> <span class="PreProc">var</span> x/<span class="muRegEsi">esi</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> copy _x
<span id="L411" class="LineNr">411 </span> <span class="Delimiter">{</span>
<span id="L412" class="LineNr">412 </span> <span class="PreProc">var</span> x-type/<span class="muRegEax">eax</span>: (addr int) <span class="Special">&lt;-</span> get x, <span class="PreProc">type</span>
<span id="L413" class="LineNr">413 </span> compare *x-type, <span class="Constant">2</span>/symbol
<span id="L414" class="LineNr">414 </span> <span class="PreProc">break-if-=</span>
<span id="L415" class="LineNr">415 </span> <span class="PreProc">return</span> <span class="Constant">0</span>/false
<span id="L416" class="LineNr">416 </span> <span class="Delimiter">}</span>
<span id="L417" class="LineNr">417 </span> <span class="PreProc">var</span> x-data-ah/<span class="muRegEax">eax</span>: (addr handle stream byte) <span class="Special">&lt;-</span> get x, text-data
<span id="L418" class="LineNr">418 </span> <span class="PreProc">var</span> _x-data/<span class="muRegEax">eax</span>: (addr stream byte) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *x-data-ah
<span id="L419" class="LineNr">419 </span> <span class="PreProc">var</span> x-data/<span class="muRegEsi">esi</span>: (addr stream byte) <span class="Special">&lt;-</span> copy _x-data
<span id="L420" class="LineNr">420 </span> <a href='../106stream.subx.html#L59'>rewind-stream</a> x-data
<span id="L421" class="LineNr">421 </span> <span class="PreProc">var</span> g/<span class="muRegEax">eax</span>: grapheme <span class="Special">&lt;-</span> <a href='../403unicode.mu.html#L92'>read-grapheme</a> x-data
<span id="L422" class="LineNr">422 </span> <span class="muComment"># special case: '$' is reserved for gensyms, and can work with either</span>
<span id="L423" class="LineNr">423 </span> <span class="muComment"># operator or non-operator symbols.</span>
<span id="L424" class="LineNr">424 </span> <span class="Delimiter">{</span>
<span id="L425" class="LineNr">425 </span> compare g, <span class="Constant">0x24</span>/dollar
<span id="L426" class="LineNr">426 </span> <span class="PreProc">break-if-!=</span>
<span id="L427" class="LineNr">427 </span> <span class="Delimiter">{</span>
<span id="L428" class="LineNr">428 </span> <span class="PreProc">var</span> all-dollars?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='../309stream.subx.html#L6'>stream-empty?</a> x-data
<span id="L429" class="LineNr">429 </span> compare all-dollars?, <span class="Constant">0</span>/false
<span id="L430" class="LineNr">430 </span> <span class="PreProc">break-if-=</span>
<span id="L431" class="LineNr">431 </span> <span class="muComment"># '$', '$$', '$$$', etc. are regular symbols</span>
<span id="L432" class="LineNr">432 </span> <span class="PreProc">return</span> <span class="Constant">0</span>/false
<span id="L433" class="LineNr">433 </span> <span class="Delimiter">}</span>
<span id="L434" class="LineNr">434 </span> g <span class="Special">&lt;-</span> <a href='../403unicode.mu.html#L92'>read-grapheme</a> x-data
<span id="L435" class="LineNr">435 </span> <span class="PreProc">loop</span>
<span id="L436" class="LineNr">436 </span> <span class="Delimiter">}</span>
<span id="L437" class="LineNr">437 </span> <span class="Delimiter">{</span>
<span id="L438" class="LineNr">438 </span> <span class="Delimiter">{</span>
<span id="L439" class="LineNr">439 </span> <span class="PreProc">var</span> result/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='infix.mu.html#L456'>operator-grapheme?</a> g
<span id="L440" class="LineNr">440 </span> compare result, <span class="Constant">0</span>/false
<span id="L441" class="LineNr">441 </span> <span class="PreProc">break-if-!=</span>
<span id="L442" class="LineNr">442 </span> <span class="PreProc">return</span> <span class="Constant">0</span>/false
<span id="L443" class="LineNr">443 </span> <span class="Delimiter">}</span>
<span id="L444" class="LineNr">444 </span> <span class="Delimiter">{</span>
<span id="L445" class="LineNr">445 </span> <span class="PreProc">var</span> done?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='../309stream.subx.html#L6'>stream-empty?</a> x-data
<span id="L446" class="LineNr">446 </span> compare done?, <span class="Constant">0</span>/false
<span id="L447" class="LineNr">447 </span> <span class="Delimiter">}</span>
<span id="L448" class="LineNr">448 </span> <span class="PreProc">break-if-!=</span>
<span id="L449" class="LineNr">449 </span> g <span class="Special">&lt;-</span> <a href='../403unicode.mu.html#L92'>read-grapheme</a> x-data
<span id="L450" class="LineNr">450 </span> <span class="PreProc">loop</span>
<span id="L451" class="LineNr">451 </span> <span class="Delimiter">}</span>
<span id="L452" class="LineNr">452 </span> <span class="PreProc">return</span> <span class="Constant">1</span>/true
<span id="L453" class="LineNr">453 </span><span class="Delimiter">}</span>
<span id="L454" class="LineNr">454 </span>
<span id="L455" class="LineNr">455 </span><span class="muComment"># just a short list of operator graphemes for now</span>
<span id="L456" class="LineNr">456 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='infix.mu.html#L456'>operator-grapheme?</a></span> g: grapheme<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: boolean <span class="Delimiter">{</span>
<span id="L457" class="LineNr">457 </span> <span class="muComment"># '$' is special and can be in either a symbol or operator; here we treat it as a symbol</span>
<span id="L458" class="LineNr">458 </span> compare g, <span class="Constant">0x25</span>/percent
<span id="L459" class="LineNr">459 </span> <span class="Delimiter">{</span>
<span id="L460" class="LineNr">460 </span> <span class="PreProc">break-if-!=</span>
<span id="L461" class="LineNr">461 </span> <span class="PreProc">return</span> <span class="Constant">1</span>/true
<span id="L462" class="LineNr">462 </span> <span class="Delimiter">}</span>
<span id="L463" class="LineNr">463 </span> compare g, <span class="Constant">0x26</span>/ampersand
<span id="L464" class="LineNr">464 </span> <span class="Delimiter">{</span>
<span id="L465" class="LineNr">465 </span> <span class="PreProc">break-if-!=</span>
<span id="L466" class="LineNr">466 </span> <span class="PreProc">return</span> <span class="Constant">1</span>/true
<span id="L467" class="LineNr">467 </span> <span class="Delimiter">}</span>
<span id="L468" class="LineNr">468 </span> compare g, <span class="Constant">0x2a</span>/asterisk
<span id="L469" class="LineNr">469 </span> <span class="Delimiter">{</span>
<span id="L470" class="LineNr">470 </span> <span class="PreProc">break-if-!=</span>
<span id="L471" class="LineNr">471 </span> <span class="PreProc">return</span> <span class="Constant">1</span>/true
<span id="L472" class="LineNr">472 </span> <span class="Delimiter">}</span>
<span id="L473" class="LineNr">473 </span> compare g, <span class="Constant">0x2b</span>/plus
<span id="L474" class="LineNr">474 </span> <span class="Delimiter">{</span>
<span id="L475" class="LineNr">475 </span> <span class="PreProc">break-if-!=</span>
<span id="L476" class="LineNr">476 </span> <span class="PreProc">return</span> <span class="Constant">1</span>/true
<span id="L477" class="LineNr">477 </span> <span class="Delimiter">}</span>
<span id="L478" class="LineNr">478 </span> compare g, <span class="Constant">0x2d</span>/dash <span class="muComment"># '-' not allowed in symbols</span>
<span id="L479" class="LineNr">479 </span> <span class="Delimiter">{</span>
<span id="L480" class="LineNr">480 </span> <span class="PreProc">break-if-!=</span>
<span id="L481" class="LineNr">481 </span> <span class="PreProc">return</span> <span class="Constant">1</span>/true
<span id="L482" class="LineNr">482 </span> <span class="Delimiter">}</span>
<span id="L483" class="LineNr">483 </span> compare g, <span class="Constant">0x2e</span>/period
<span id="L484" class="LineNr">484 </span> <span class="Delimiter">{</span>
<span id="L485" class="LineNr">485 </span> <span class="PreProc">break-if-!=</span>
<span id="L486" class="LineNr">486 </span> <span class="PreProc">return</span> <span class="Constant">1</span>/true
<span id="L487" class="LineNr">487 </span> <span class="Delimiter">}</span>
<span id="L488" class="LineNr">488 </span> compare g, <span class="Constant">0x2f</span>/slash
<span id="L489" class="LineNr">489 </span> <span class="Delimiter">{</span>
<span id="L490" class="LineNr">490 </span> <span class="PreProc">break-if-!=</span>
<span id="L491" class="LineNr">491 </span> <span class="PreProc">return</span> <span class="Constant">1</span>/true
<span id="L492" class="LineNr">492 </span> <span class="Delimiter">}</span>
<span id="L493" class="LineNr">493 </span> compare g, <span class="Constant">0x3a</span>/colon
<span id="L494" class="LineNr">494 </span> <span class="Delimiter">{</span>
<span id="L495" class="LineNr">495 </span> <span class="PreProc">break-if-!=</span>
<span id="L496" class="LineNr">496 </span> <span class="PreProc">return</span> <span class="Constant">1</span>/true
<span id="L497" class="LineNr">497 </span> <span class="Delimiter">}</span>
<span id="L498" class="LineNr">498 </span> compare g, <span class="Constant">0x3b</span>/semi-colon
<span id="L499" class="LineNr">499 </span> <span class="Delimiter">{</span>
<span id="L500" class="LineNr">500 </span> <span class="PreProc">break-if-!=</span>
<span id="L501" class="LineNr">501 </span> <span class="PreProc">return</span> <span class="Constant">1</span>/true
<span id="L502" class="LineNr">502 </span> <span class="Delimiter">}</span>
<span id="L503" class="LineNr">503 </span> compare g, <span class="Constant">0x3c</span>/less-than
<span id="L504" class="LineNr">504 </span> <span class="Delimiter">{</span>
<span id="L505" class="LineNr">505 </span> <span class="PreProc">break-if-!=</span>
<span id="L506" class="LineNr">506 </span> <span class="PreProc">return</span> <span class="Constant">1</span>/true
<span id="L507" class="LineNr">507 </span> <span class="Delimiter">}</span>
<span id="L508" class="LineNr">508 </span> compare g, <span class="Constant">0x3d</span>/equal
<span id="L509" class="LineNr">509 </span> <span class="Delimiter">{</span>
<span id="L510" class="LineNr">510 </span> <span class="PreProc">break-if-!=</span>
<span id="L511" class="LineNr">511 </span> <span class="PreProc">return</span> <span class="Constant">1</span>/true
<span id="L512" class="LineNr">512 </span> <span class="Delimiter">}</span>
<span id="L513" class="LineNr">513 </span> compare g, <span class="Constant">0x3e</span>/greater-than
<span id="L514" class="LineNr">514 </span> <span class="Delimiter">{</span>
<span id="L515" class="LineNr">515 </span> <span class="PreProc">break-if-!=</span>
<span id="L516" class="LineNr">516 </span> <span class="PreProc">return</span> <span class="Constant">1</span>/true
<span id="L517" class="LineNr">517 </span> <span class="Delimiter">}</span>
<span id="L518" class="LineNr">518 </span> <span class="muComment"># '?' is a symbol char</span>
<span id="L519" class="LineNr">519 </span> compare g, <span class="Constant">0x5c</span>/backslash
<span id="L520" class="LineNr">520 </span> <span class="Delimiter">{</span>
<span id="L521" class="LineNr">521 </span> <span class="PreProc">break-if-!=</span>
<span id="L522" class="LineNr">522 </span> <span class="PreProc">return</span> <span class="Constant">1</span>/true
<span id="L523" class="LineNr">523 </span> <span class="Delimiter">}</span>
<span id="L524" class="LineNr">524 </span> compare g, <span class="Constant">0x5e</span>/caret
<span id="L525" class="LineNr">525 </span> <span class="Delimiter">{</span>
<span id="L526" class="LineNr">526 </span> <span class="PreProc">break-if-!=</span>
<span id="L527" class="LineNr">527 </span> <span class="PreProc">return</span> <span class="Constant">1</span>/true
<span id="L528" class="LineNr">528 </span> <span class="Delimiter">}</span>
<span id="L529" class="LineNr">529 </span> <span class="muComment"># '_' is a symbol char</span>
<span id="L530" class="LineNr">530 </span> compare g, <span class="Constant">0x7c</span>/vertical-line
<span id="L531" class="LineNr">531 </span> <span class="Delimiter">{</span>
<span id="L532" class="LineNr">532 </span> <span class="PreProc">break-if-!=</span>
<span id="L533" class="LineNr">533 </span> <span class="PreProc">return</span> <span class="Constant">1</span>/true
<span id="L534" class="LineNr">534 </span> <span class="Delimiter">}</span>
<span id="L535" class="LineNr">535 </span> compare g, <span class="Constant">0x7e</span>/tilde
<span id="L536" class="LineNr">536 </span> <span class="Delimiter">{</span>
<span id="L537" class="LineNr">537 </span> <span class="PreProc">break-if-!=</span>
<span id="L538" class="LineNr">538 </span> <span class="PreProc">return</span> <span class="Constant">1</span>/true
<span id="L539" class="LineNr">539 </span> <span class="Delimiter">}</span>
<span id="L540" class="LineNr">540 </span> <span class="PreProc">return</span> <span class="Constant">0</span>/false
<span id="L541" class="LineNr">541 </span><span class="Delimiter">}</span>
<span id="L542" class="LineNr">542 </span>
<span id="L543" class="LineNr">543 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='infix.mu.html#L543'>quote-or-unquote?</a></span> _x-ah: (addr handle <a href='cell.mu.html#L1'>cell</a>)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: boolean <span class="Delimiter">{</span>
<span id="L544" class="LineNr">544 </span> <span class="PreProc">var</span> x-ah/<span class="muRegEax">eax</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> copy _x-ah
<span id="L545" class="LineNr">545 </span> <span class="PreProc">var</span> x/<span class="muRegEax">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *x-ah
<span id="L546" class="LineNr">546 </span> <span class="Delimiter">{</span>
<span id="L547" class="LineNr">547 </span> <span class="PreProc">var</span> quote?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='cell.mu.html#L44'>symbol-equal?</a> x, <span class="Constant">&quot;'&quot;</span>
<span id="L548" class="LineNr">548 </span> compare quote?, <span class="Constant">0</span>/false
<span id="L549" class="LineNr">549 </span> <span class="PreProc">break-if-=</span>
<span id="L550" class="LineNr">550 </span> <span class="PreProc">return</span> <span class="Constant">1</span>/true
<span id="L551" class="LineNr">551 </span> <span class="Delimiter">}</span>
<span id="L552" class="LineNr">552 </span> <span class="Delimiter">{</span>
<span id="L553" class="LineNr">553 </span> <span class="PreProc">var</span> backquote?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='cell.mu.html#L44'>symbol-equal?</a> x, <span class="Constant">&quot;`&quot;</span>
<span id="L554" class="LineNr">554 </span> compare backquote?, <span class="Constant">0</span>/false
<span id="L555" class="LineNr">555 </span> <span class="PreProc">break-if-=</span>
<span id="L556" class="LineNr">556 </span> <span class="PreProc">return</span> <span class="Constant">1</span>/true
<span id="L557" class="LineNr">557 </span> <span class="Delimiter">}</span>
<span id="L558" class="LineNr">558 </span> <span class="Delimiter">{</span>
<span id="L559" class="LineNr">559 </span> <span class="PreProc">var</span> unquote?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='cell.mu.html#L44'>symbol-equal?</a> x, <span class="Constant">&quot;,&quot;</span>
<span id="L560" class="LineNr">560 </span> compare unquote?, <span class="Constant">0</span>/false
<span id="L561" class="LineNr">561 </span> <span class="PreProc">break-if-=</span>
<span id="L562" class="LineNr">562 </span> <span class="PreProc">return</span> <span class="Constant">1</span>/true
<span id="L563" class="LineNr">563 </span> <span class="Delimiter">}</span>
<span id="L564" class="LineNr">564 </span> <span class="Delimiter">{</span>
<span id="L565" class="LineNr">565 </span> <span class="PreProc">var</span> unquote-splice?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='cell.mu.html#L44'>symbol-equal?</a> x, <span class="Constant">&quot;,@&quot;</span>
<span id="L566" class="LineNr">566 </span> compare unquote-splice?, <span class="Constant">0</span>/false
<span id="L567" class="LineNr">567 </span> <span class="PreProc">break-if-=</span>
<span id="L568" class="LineNr">568 </span> <span class="PreProc">return</span> <span class="Constant">1</span>/true
<span id="L569" class="LineNr">569 </span> <span class="Delimiter">}</span>
<span id="L570" class="LineNr">570 </span> <span class="PreProc">return</span> <span class="Constant">0</span>/false
<span id="L571" class="LineNr">571 </span><span class="Delimiter">}</span>
<span id="L572" class="LineNr">572 </span>
<span id="L573" class="LineNr">573 </span><span class="muComment"># helpers for tests</span>
<span id="L574" class="LineNr">574 </span>
<span id="L575" class="LineNr">575 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='infix.mu.html#L575'>check-infix</a></span> actual: (addr array byte), expected: (addr array byte), message: (addr array byte) <span class="Delimiter">{</span>
<span id="L576" class="LineNr">576 </span> <span class="PreProc">var</span> trace-storage: trace
<span id="L577" class="LineNr">577 </span> <span class="PreProc">var</span> trace/<span class="muRegEdx">edx</span>: (addr trace) <span class="Special">&lt;-</span> address trace-storage
<span id="L578" class="LineNr">578 </span><span class="CommentedCode">#? initialize-trace trace, 1/only-errors, 0x10/capacity, 0/visible</span>
<span id="L579" class="LineNr">579 </span> <a href='trace.mu.html#L61'>initialize-trace</a> trace, <span class="Constant">0x10</span>/levels, <span class="Constant">0x1000</span>/capacity, <span class="Constant">0</span>/visible
<span id="L580" class="LineNr">580 </span> <span class="muComment">#</span>
<span id="L581" class="LineNr">581 </span> <span class="PreProc">var</span> actual-buffer-storage: <a href='gap-buffer.mu.html#L3'>gap-buffer</a>
<span id="L582" class="LineNr">582 </span> <span class="PreProc">var</span> actual-buffer/<span class="muRegEax">eax</span>: (addr <a href='gap-buffer.mu.html#L3'>gap-buffer</a>) <span class="Special">&lt;-</span> address actual-buffer-storage
<span id="L583" class="LineNr">583 </span> <a href='gap-buffer.mu.html#L53'>initialize-gap-buffer-with</a> actual-buffer, actual
<span id="L584" class="LineNr">584 </span> <span class="PreProc">var</span> actual-tree-h: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L585" class="LineNr">585 </span> <span class="PreProc">var</span> actual-tree-ah/<span class="muRegEsi">esi</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address actual-tree-h
<span id="L586" class="LineNr">586 </span> <a href='read.mu.html#L1'>read-cell</a> actual-buffer, actual-tree-ah, trace
<span id="L587" class="LineNr">587 </span><span class="CommentedCode">#? dump-trace-with-label trace, &quot;infix&quot;</span>
<span id="L588" class="LineNr">588 </span> <a href='print.mu.html#L136'>dump-cell-from-cursor-over-full-screen</a> actual-tree-ah, <span class="Constant">7</span>/fg <span class="Constant">0</span>/bg
<span id="L589" class="LineNr">589 </span> <span class="PreProc">var</span> _actual-tree/<span class="muRegEax">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *actual-tree-ah
<span id="L590" class="LineNr">590 </span> <span class="PreProc">var</span> actual-tree/<span class="muRegEsi">esi</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> copy _actual-tree
<span id="L591" class="LineNr">591 </span> <span class="muComment">#</span>
<span id="L592" class="LineNr">592 </span> <span class="PreProc">var</span> expected-buffer-storage: <a href='gap-buffer.mu.html#L3'>gap-buffer</a>
<span id="L593" class="LineNr">593 </span> <span class="PreProc">var</span> expected-buffer/<span class="muRegEax">eax</span>: (addr <a href='gap-buffer.mu.html#L3'>gap-buffer</a>) <span class="Special">&lt;-</span> address expected-buffer-storage
<span id="L594" class="LineNr">594 </span> <a href='gap-buffer.mu.html#L53'>initialize-gap-buffer-with</a> expected-buffer, expected
<span id="L595" class="LineNr">595 </span> <span class="PreProc">var</span> expected-tree-h: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L596" class="LineNr">596 </span> <span class="PreProc">var</span> expected-tree-ah/<span class="muRegEdi">edi</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address expected-tree-h
<span id="L597" class="LineNr">597 </span> <a href='infix.mu.html#L604'>read-without-infix</a> expected-buffer, expected-tree-ah, trace
<span id="L598" class="LineNr">598 </span> <span class="PreProc">var</span> expected-tree/<span class="muRegEax">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *expected-tree-ah
<span id="L599" class="LineNr">599 </span> <span class="muComment">#</span>
<span id="L600" class="LineNr">600 </span> <span class="PreProc">var</span> match?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='evaluate.mu.html#L1245'>cell-isomorphic?</a> actual-tree, expected-tree, trace
<span id="L601" class="LineNr">601 </span> <a href='../502test.mu.html#L19'>check</a> match?, message
<span id="L602" class="LineNr">602 </span><span class="Delimiter">}</span>
<span id="L603" class="LineNr">603 </span>
<span id="L604" class="LineNr">604 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='infix.mu.html#L604'>read-without-infix</a></span> in: (addr <a href='gap-buffer.mu.html#L3'>gap-buffer</a>), out: (addr handle <a href='cell.mu.html#L1'>cell</a>), trace: (addr trace) <span class="Delimiter">{</span>
<span id="L605" class="LineNr">605 </span> <span class="muComment"># eagerly tokenize everything so that the phases are easier to see in the trace</span>
<span id="L606" class="LineNr">606 </span> <span class="PreProc">var</span> tokens-storage: (stream <a href='tokenize.mu.html#L3'>token</a> <span class="Constant">0x400</span>)
<span id="L607" class="LineNr">607 </span> <span class="PreProc">var</span> tokens/<span class="muRegEdx">edx</span>: (addr stream <a href='tokenize.mu.html#L3'>token</a>) <span class="Special">&lt;-</span> address tokens-storage
<span id="L608" class="LineNr">608 </span> <a href='tokenize.mu.html#L13'>tokenize</a> in, tokens, trace
<span id="L609" class="LineNr">609 </span> <span class="PreProc">var</span> error?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='trace.mu.html#L94'>has-errors?</a> trace
<span id="L610" class="LineNr">610 </span> compare error?, <span class="Constant">0</span>/false
<span id="L611" class="LineNr">611 </span> <span class="Delimiter">{</span>
<span id="L612" class="LineNr">612 </span> <span class="PreProc">break-if-=</span>
<span id="L613" class="LineNr">613 </span> <a href='trace.mu.html#L379'>dump-trace</a> trace
<span id="L614" class="LineNr">614 </span> <span class="PreProc">return</span>
<span id="L615" class="LineNr">615 </span> <span class="Delimiter">}</span>
<span id="L616" class="LineNr">616 </span> <span class="muComment"># insert more parens based on indentation</span>
<span id="L617" class="LineNr">617 </span> <span class="PreProc">var</span> parenthesized-tokens-storage: (stream <a href='tokenize.mu.html#L3'>token</a> <span class="Constant">0x400</span>)
<span id="L618" class="LineNr">618 </span> <span class="PreProc">var</span> parenthesized-tokens/<span class="muRegEcx">ecx</span>: (addr stream <a href='tokenize.mu.html#L3'>token</a>) <span class="Special">&lt;-</span> address parenthesized-tokens-storage
<span id="L619" class="LineNr">619 </span> <a href='parenthesize.mu.html#L15'>parenthesize</a> tokens, parenthesized-tokens, trace
<span id="L620" class="LineNr">620 </span> <span class="PreProc">var</span> error?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='trace.mu.html#L94'>has-errors?</a> trace
<span id="L621" class="LineNr">621 </span> compare error?, <span class="Constant">0</span>/false
<span id="L622" class="LineNr">622 </span> <span class="Delimiter">{</span>
<span id="L623" class="LineNr">623 </span> <span class="PreProc">break-if-=</span>
<span id="L624" class="LineNr">624 </span> <a href='trace.mu.html#L379'>dump-trace</a> trace
<span id="L625" class="LineNr">625 </span> <span class="PreProc">return</span>
<span id="L626" class="LineNr">626 </span> <span class="Delimiter">}</span>
<span id="L627" class="LineNr">627 </span> <a href='parse.mu.html#L1'>parse-input</a> parenthesized-tokens, out, trace
<span id="L628" class="LineNr">628 </span><span class="Delimiter">}</span>
</pre>
</body>
</html>
<!-- vim: set foldmethod=manual : -->

135
html/shell/int-stack.mu.html generated Normal file
View File

@ -0,0 +1,135 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Mu - shell/int-stack.mu</title>
<meta name="Generator" content="Vim/8.1">
<meta name="plugin-version" content="vim8.1_v1">
<meta name="syntax" content="none">
<meta name="settings" content="number_lines,use_css,pre_wrap,no_foldcolumn,expand_tabs,line_ids,prevent_copy=">
<meta name="colorscheme" content="minimal-dark">
<style type="text/css">
<!--
pre { white-space: pre-wrap; font-family: monospace; color: #000000; background-color: #a8a8a8; }
body { font-size:12pt; font-family: monospace; color: #000000; background-color: #a8a8a8; }
a { color:inherit; }
* { font-size:12pt; font-size: 1em; }
.PreProc { color: #c000c0; }
.muRegEcx { color: #af875f; }
.muRegEax { color: #875f00; }
.LineNr { }
.muRegEdx { color: #878700; }
.Constant { color: #008787; }
.muRegEsi { color: #87d787; }
.muRegEdi { color: #87ffd7; }
.Delimiter { color: #c000c0; }
.muFunction { color: #af5f00; text-decoration: underline; }
.Special { color: #ff6060; }
-->
</style>
<script type='text/javascript'>
<!--
/* function to open any folds containing a jumped-to line before jumping to it */
function JumpToLine()
{
var lineNum;
lineNum = window.location.hash;
lineNum = lineNum.substr(1); /* strip off '#' */
if (lineNum.indexOf('L') == -1) {
lineNum = 'L'+lineNum;
}
var lineElem = document.getElementById(lineNum);
/* Always jump to new location even if the line was hidden inside a fold, or
* we corrected the raw number to a line ID.
*/
if (lineElem) {
lineElem.scrollIntoView(true);
}
return true;
}
if ('onhashchange' in window) {
window.onhashchange = JumpToLine;
}
-->
</script>
</head>
<body onload='JumpToLine();'>
<a href='https://github.com/akkartik/mu/blob/main/shell/int-stack.mu'>https://github.com/akkartik/mu/blob/main/shell/int-stack.mu</a>
<pre id='vimCodeElement'>
<span id="L1" class="LineNr"> 1 </span><span class="PreProc">type</span> <a href='int-stack.mu.html#L1'>int-stack</a> <span class="Delimiter">{</span>
<span id="L2" class="LineNr"> 2 </span> data: (handle array int)
<span id="L3" class="LineNr"> 3 </span> top: int
<span id="L4" class="LineNr"> 4 </span><span class="Delimiter">}</span>
<span id="L5" class="LineNr"> 5 </span>
<span id="L6" class="LineNr"> 6 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='int-stack.mu.html#L6'>initialize-int-stack</a></span> _self: (addr <a href='int-stack.mu.html#L1'>int-stack</a>), n: int <span class="Delimiter">{</span>
<span id="L7" class="LineNr"> 7 </span> <span class="PreProc">var</span> self/<span class="muRegEsi">esi</span>: (addr <a href='int-stack.mu.html#L1'>int-stack</a>) <span class="Special">&lt;-</span> copy _self
<span id="L8" class="LineNr"> 8 </span> <span class="PreProc">var</span> d/<span class="muRegEdi">edi</span>: (addr handle array int) <span class="Special">&lt;-</span> get self, data
<span id="L9" class="LineNr"> 9 </span> populate d, n
<span id="L10" class="LineNr">10 </span> <span class="PreProc">var</span> top/<span class="muRegEax">eax</span>: (addr int) <span class="Special">&lt;-</span> get self, top
<span id="L11" class="LineNr">11 </span> copy-to *top, <span class="Constant">0</span>
<span id="L12" class="LineNr">12 </span><span class="Delimiter">}</span>
<span id="L13" class="LineNr">13 </span>
<span id="L14" class="LineNr">14 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='int-stack.mu.html#L14'>push-int-stack</a></span> _self: (addr <a href='int-stack.mu.html#L1'>int-stack</a>), _val: int <span class="Delimiter">{</span>
<span id="L15" class="LineNr">15 </span> <span class="PreProc">var</span> self/<span class="muRegEsi">esi</span>: (addr <a href='int-stack.mu.html#L1'>int-stack</a>) <span class="Special">&lt;-</span> copy _self
<span id="L16" class="LineNr">16 </span> <span class="PreProc">var</span> top-addr/<span class="muRegEcx">ecx</span>: (addr int) <span class="Special">&lt;-</span> get self, top
<span id="L17" class="LineNr">17 </span> <span class="PreProc">var</span> data-ah/<span class="muRegEdx">edx</span>: (addr handle array int) <span class="Special">&lt;-</span> get self, data
<span id="L18" class="LineNr">18 </span> <span class="PreProc">var</span> data/<span class="muRegEax">eax</span>: (addr array int) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *data-ah
<span id="L19" class="LineNr">19 </span> <span class="PreProc">var</span> top/<span class="muRegEdx">edx</span>: int <span class="Special">&lt;-</span> copy *top-addr
<span id="L20" class="LineNr">20 </span> <span class="PreProc">var</span> dest-addr/<span class="muRegEdx">edx</span>: (addr int) <span class="Special">&lt;-</span> index data, top
<span id="L21" class="LineNr">21 </span> <span class="PreProc">var</span> val/<span class="muRegEax">eax</span>: int <span class="Special">&lt;-</span> copy _val
<span id="L22" class="LineNr">22 </span> copy-to *dest-addr, val
<span id="L23" class="LineNr">23 </span> add-to *top-addr, <span class="Constant">1</span>
<span id="L24" class="LineNr">24 </span><span class="Delimiter">}</span>
<span id="L25" class="LineNr">25 </span>
<span id="L26" class="LineNr">26 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='int-stack.mu.html#L26'>pop-int-stack</a></span> _self: (addr <a href='int-stack.mu.html#L1'>int-stack</a>)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: int <span class="Delimiter">{</span>
<span id="L27" class="LineNr">27 </span> <span class="PreProc">var</span> self/<span class="muRegEsi">esi</span>: (addr <a href='int-stack.mu.html#L1'>int-stack</a>) <span class="Special">&lt;-</span> copy _self
<span id="L28" class="LineNr">28 </span> <span class="PreProc">var</span> top-addr/<span class="muRegEcx">ecx</span>: (addr int) <span class="Special">&lt;-</span> get self, top
<span id="L29" class="LineNr">29 </span> <span class="Delimiter">{</span>
<span id="L30" class="LineNr">30 </span> compare *top-addr, <span class="Constant">0</span>
<span id="L31" class="LineNr">31 </span> <span class="PreProc">break-if-&gt;</span>
<span id="L32" class="LineNr">32 </span> <span class="PreProc">return</span> <span class="Constant">0</span>
<span id="L33" class="LineNr">33 </span> <span class="Delimiter">}</span>
<span id="L34" class="LineNr">34 </span> subtract-from *top-addr, <span class="Constant">1</span>
<span id="L35" class="LineNr">35 </span> <span class="PreProc">var</span> data-ah/<span class="muRegEdx">edx</span>: (addr handle array int) <span class="Special">&lt;-</span> get self, data
<span id="L36" class="LineNr">36 </span> <span class="PreProc">var</span> data/<span class="muRegEax">eax</span>: (addr array int) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *data-ah
<span id="L37" class="LineNr">37 </span> <span class="PreProc">var</span> top/<span class="muRegEdx">edx</span>: int <span class="Special">&lt;-</span> copy *top-addr
<span id="L38" class="LineNr">38 </span> <span class="PreProc">var</span> result-addr/<span class="muRegEax">eax</span>: (addr int) <span class="Special">&lt;-</span> index data, top
<span id="L39" class="LineNr">39 </span> <span class="PreProc">var</span> val/<span class="muRegEax">eax</span>: int <span class="Special">&lt;-</span> copy *result-addr
<span id="L40" class="LineNr">40 </span> <span class="PreProc">return</span> val
<span id="L41" class="LineNr">41 </span><span class="Delimiter">}</span>
<span id="L42" class="LineNr">42 </span>
<span id="L43" class="LineNr">43 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='int-stack.mu.html#L43'>int-stack-empty?</a></span> _self: (addr <a href='int-stack.mu.html#L1'>int-stack</a>)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: boolean <span class="Delimiter">{</span>
<span id="L44" class="LineNr">44 </span> <span class="PreProc">var</span> self/<span class="muRegEsi">esi</span>: (addr <a href='int-stack.mu.html#L1'>int-stack</a>) <span class="Special">&lt;-</span> copy _self
<span id="L45" class="LineNr">45 </span> <span class="PreProc">var</span> top-addr/<span class="muRegEcx">ecx</span>: (addr int) <span class="Special">&lt;-</span> get self, top
<span id="L46" class="LineNr">46 </span> compare *top-addr, <span class="Constant">0</span>
<span id="L47" class="LineNr">47 </span> <span class="Delimiter">{</span>
<span id="L48" class="LineNr">48 </span> <span class="PreProc">break-if-=</span>
<span id="L49" class="LineNr">49 </span> <span class="PreProc">return</span> <span class="Constant">0</span>/false
<span id="L50" class="LineNr">50 </span> <span class="Delimiter">}</span>
<span id="L51" class="LineNr">51 </span> <span class="PreProc">return</span> <span class="Constant">1</span>/true
<span id="L52" class="LineNr">52 </span><span class="Delimiter">}</span>
<span id="L53" class="LineNr">53 </span>
<span id="L54" class="LineNr">54 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='int-stack.mu.html#L54'>int-stack-top</a></span> _self: (addr <a href='int-stack.mu.html#L1'>int-stack</a>)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: int <span class="Delimiter">{</span>
<span id="L55" class="LineNr">55 </span> <span class="PreProc">var</span> self/<span class="muRegEsi">esi</span>: (addr <a href='int-stack.mu.html#L1'>int-stack</a>) <span class="Special">&lt;-</span> copy _self
<span id="L56" class="LineNr">56 </span> <span class="PreProc">var</span> top-addr/<span class="muRegEcx">ecx</span>: (addr int) <span class="Special">&lt;-</span> get self, top
<span id="L57" class="LineNr">57 </span> <span class="PreProc">var</span> top/<span class="muRegEcx">ecx</span>: int <span class="Special">&lt;-</span> copy *top-addr
<span id="L58" class="LineNr">58 </span> <span class="Delimiter">{</span>
<span id="L59" class="LineNr">59 </span> compare top, <span class="Constant">0</span>
<span id="L60" class="LineNr">60 </span> <span class="PreProc">break-if-&gt;</span>
<span id="L61" class="LineNr">61 </span> <span class="PreProc">return</span> <span class="Constant">0</span>
<span id="L62" class="LineNr">62 </span> <span class="Delimiter">}</span>
<span id="L63" class="LineNr">63 </span> top <span class="Special">&lt;-</span> decrement
<span id="L64" class="LineNr">64 </span> <span class="PreProc">var</span> data-ah/<span class="muRegEdx">edx</span>: (addr handle array int) <span class="Special">&lt;-</span> get self, data
<span id="L65" class="LineNr">65 </span> <span class="PreProc">var</span> data/<span class="muRegEax">eax</span>: (addr array int) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *data-ah
<span id="L66" class="LineNr">66 </span> <span class="PreProc">var</span> result-addr/<span class="muRegEax">eax</span>: (addr int) <span class="Special">&lt;-</span> index data, top
<span id="L67" class="LineNr">67 </span> <span class="PreProc">var</span> val/<span class="muRegEax">eax</span>: int <span class="Special">&lt;-</span> copy *result-addr
<span id="L68" class="LineNr">68 </span> <span class="PreProc">return</span> val
<span id="L69" class="LineNr">69 </span><span class="Delimiter">}</span>
</pre>
</body>
</html>
<!-- vim: set foldmethod=manual : -->

View File

@ -66,7 +66,7 @@ if ('onhashchange' in window) {
<a href='https://github.com/akkartik/mu/blob/main/shell/macroexpand.mu'>https://github.com/akkartik/mu/blob/main/shell/macroexpand.mu</a>
<pre id='vimCodeElement'>
<span id="L1" class="LineNr"> 1 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='macroexpand.mu.html#L1'>macroexpand</a></span> expr-ah: (addr handle <a href='cell.mu.html#L1'>cell</a>), globals: (addr <a href='global.mu.html#L1'>global-table</a>), trace: (addr trace) <span class="Delimiter">{</span>
<span id="L2" class="Folded"> 2 </span><span class="Folded">+-- 15 lines: # trace &quot;macroexpand &quot; expr-ah --------------------------------------------------------------------------------------------------------------------------------------------</span>
<span id="L2" class="Folded"> 2 </span><span class="Folded">+-- 15 lines: # trace &quot;macroexpand &quot; expr-ah -----------------------------------------------------------------------------------------------------------------------------------------------------------------------</span>
<span id="L17" class="LineNr"> 17 </span> <a href='trace.mu.html#L239'>trace-lower</a> trace
<span id="L18" class="LineNr"> 18 </span> <span class="muComment"># loop until convergence</span>
<span id="L19" class="LineNr"> 19 </span> <span class="Delimiter">{</span>
@ -78,13 +78,13 @@ if ('onhashchange' in window) {
<span id="L25" class="LineNr"> 25 </span> <span class="PreProc">loop-if-!=</span>
<span id="L26" class="LineNr"> 26 </span> <span class="Delimiter">}</span>
<span id="L27" class="LineNr"> 27 </span> <a href='trace.mu.html#L250'>trace-higher</a> trace
<span id="L28" class="Folded"> 28 </span><span class="Folded">+-- 15 lines: # trace &quot;=&gt; &quot; expr-ah -----------------------------------------------------------------------------------------------------------------------------------------------------</span>
<span id="L28" class="Folded"> 28 </span><span class="Folded">+-- 15 lines: # trace &quot;=&gt; &quot; expr-ah --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------</span>
<span id="L43" class="LineNr"> 43 </span><span class="Delimiter">}</span>
<span id="L44" class="LineNr"> 44 </span>
<span id="L45" class="LineNr"> 45 </span><span class="muComment"># return true if we found any macros</span>
<span id="L46" class="LineNr"> 46 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='macroexpand.mu.html#L46'>macroexpand-iter</a></span> _expr-ah: (addr handle <a href='cell.mu.html#L1'>cell</a>), globals: (addr <a href='global.mu.html#L1'>global-table</a>), trace: (addr trace)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: boolean <span class="Delimiter">{</span>
<span id="L47" class="LineNr"> 47 </span> <span class="PreProc">var</span> expr-ah/<span class="muRegEsi">esi</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> copy _expr-ah
<span id="L48" class="Folded"> 48 </span><span class="Folded">+-- 15 lines: # trace &quot;macroexpand-iter &quot; expr ------------------------------------------------------------------------------------------------------------------------------------------</span>
<span id="L48" class="Folded"> 48 </span><span class="Folded">+-- 15 lines: # trace &quot;macroexpand-iter &quot; expr ---------------------------------------------------------------------------------------------------------------------------------------------------------------------</span>
<span id="L63" class="LineNr"> 63 </span> <a href='trace.mu.html#L239'>trace-lower</a> trace
<span id="L64" class="LineNr"> 64 </span> <span class="muComment"># if expr is a non-pair, return</span>
<span id="L65" class="LineNr"> 65 </span> <span class="PreProc">var</span> expr/<span class="muRegEax">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *expr-ah
@ -111,8 +111,8 @@ if ('onhashchange' in window) {
<span id="L86" class="LineNr"> 86 </span> <span class="PreProc">var</span> rest-ah/<span class="muRegEcx">ecx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> get expr, right
<span id="L87" class="LineNr"> 87 </span> <span class="PreProc">var</span> first/<span class="muRegEax">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *first-ah
<span id="L88" class="LineNr"> 88 </span> <span class="Delimiter">{</span>
<span id="L89" class="LineNr"> 89 </span> <span class="PreProc">var</span> <a href='evaluate.mu.html#L1381'>litfn?</a>/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='evaluate.mu.html#L1381'>litfn?</a> first
<span id="L90" class="LineNr"> 90 </span> compare <a href='evaluate.mu.html#L1381'>litfn?</a>, <span class="Constant">0</span>/false
<span id="L89" class="LineNr"> 89 </span> <span class="PreProc">var</span> <a href='evaluate.mu.html#L1429'>litfn?</a>/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='evaluate.mu.html#L1429'>litfn?</a> first
<span id="L90" class="LineNr"> 90 </span> compare <a href='evaluate.mu.html#L1429'>litfn?</a>, <span class="Constant">0</span>/false
<span id="L91" class="LineNr"> 91 </span> <span class="PreProc">break-if-=</span>
<span id="L92" class="LineNr"> 92 </span> <span class="muComment"># litfn is a literal</span>
<span id="L93" class="LineNr"> 93 </span> <a href='trace.mu.html#L185'>trace-text</a> trace, <span class="Constant">&quot;mac&quot;</span>, <span class="Constant">&quot;literal function&quot;</span>
@ -120,8 +120,8 @@ if ('onhashchange' in window) {
<span id="L95" class="LineNr"> 95 </span> <span class="PreProc">return</span> <span class="Constant">0</span>/false
<span id="L96" class="LineNr"> 96 </span> <span class="Delimiter">}</span>
<span id="L97" class="LineNr"> 97 </span> <span class="Delimiter">{</span>
<span id="L98" class="LineNr"> 98 </span> <span class="PreProc">var</span> <a href='evaluate.mu.html#L1395'>litmac?</a>/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='evaluate.mu.html#L1395'>litmac?</a> first
<span id="L99" class="LineNr"> 99 </span> compare <a href='evaluate.mu.html#L1395'>litmac?</a>, <span class="Constant">0</span>/false
<span id="L98" class="LineNr"> 98 </span> <span class="PreProc">var</span> <a href='evaluate.mu.html#L1443'>litmac?</a>/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='evaluate.mu.html#L1443'>litmac?</a> first
<span id="L99" class="LineNr"> 99 </span> compare <a href='evaluate.mu.html#L1443'>litmac?</a>, <span class="Constant">0</span>/false
<span id="L100" class="LineNr">100 </span> <span class="PreProc">break-if-=</span>
<span id="L101" class="LineNr">101 </span> <span class="muComment"># litmac is a literal</span>
<span id="L102" class="LineNr">102 </span> <a href='trace.mu.html#L185'>trace-text</a> trace, <span class="Constant">&quot;mac&quot;</span>, <span class="Constant">&quot;literal macro&quot;</span>
@ -131,8 +131,8 @@ if ('onhashchange' in window) {
<span id="L106" class="LineNr">106 </span> <span class="PreProc">var</span> result/<span class="muRegEdi">edi</span>: boolean <span class="Special">&lt;-</span> copy <span class="Constant">0</span>/false
<span id="L107" class="LineNr">107 </span> <span class="muComment"># for each builtin, expand only what will later be evaluated</span>
<span id="L108" class="LineNr">108 </span> $macroexpand-iter:anonymous-function: <span class="Delimiter">{</span>
<span id="L109" class="LineNr">109 </span> <span class="PreProc">var</span> <a href='evaluate.mu.html#L1367'>fn?</a>/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='evaluate.mu.html#L1367'>fn?</a> first
<span id="L110" class="LineNr">110 </span> compare <a href='evaluate.mu.html#L1367'>fn?</a>, <span class="Constant">0</span>/false
<span id="L109" class="LineNr">109 </span> <span class="PreProc">var</span> <a href='evaluate.mu.html#L1415'>fn?</a>/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='evaluate.mu.html#L1415'>fn?</a> first
<span id="L110" class="LineNr">110 </span> compare <a href='evaluate.mu.html#L1415'>fn?</a>, <span class="Constant">0</span>/false
<span id="L111" class="LineNr">111 </span> <span class="PreProc">break-if-=</span>
<span id="L112" class="LineNr">112 </span> <span class="muComment"># fn: expand every expression in the body</span>
<span id="L113" class="LineNr">113 </span> <a href='trace.mu.html#L185'>trace-text</a> trace, <span class="Constant">&quot;mac&quot;</span>, <span class="Constant">&quot;anonymous function&quot;</span>
@ -159,7 +159,7 @@ if ('onhashchange' in window) {
<span id="L134" class="LineNr">134 </span> <span class="PreProc">loop</span>
<span id="L135" class="LineNr">135 </span> <span class="Delimiter">}</span>
<span id="L136" class="LineNr">136 </span> <a href='trace.mu.html#L250'>trace-higher</a> trace
<span id="L137" class="Folded">137 </span><span class="Folded">+-- 15 lines: # trace &quot;fn=&gt; &quot; _expr-ah --------------------------------------------------------------------------------------------------------------------------------------------------</span>
<span id="L137" class="Folded">137 </span><span class="Folded">+-- 15 lines: # trace &quot;fn=&gt; &quot; _expr-ah -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------</span>
<span id="L152" class="LineNr">152 </span> <span class="PreProc">return</span> result
<span id="L153" class="LineNr">153 </span> <span class="Delimiter">}</span>
<span id="L154" class="LineNr">154 </span> <span class="muComment"># builtins with &quot;special&quot; evaluation rules</span>
@ -203,7 +203,7 @@ if ('onhashchange' in window) {
<span id="L192" class="LineNr">192 </span> <span class="PreProc">var</span> val-ah/<span class="muRegEdx">edx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> get rest, left
<span id="L193" class="LineNr">193 </span> <span class="PreProc">var</span> macro-found?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='macroexpand.mu.html#L46'>macroexpand-iter</a> val-ah, globals, trace
<span id="L194" class="LineNr">194 </span> <a href='trace.mu.html#L250'>trace-higher</a> trace
<span id="L195" class="Folded">195 </span><span class="Folded">+-- 15 lines: # trace &quot;define=&gt; &quot; _expr-ah ----------------------------------------------------------------------------------------------------------------------------------------------</span>
<span id="L195" class="Folded">195 </span><span class="Folded">+-- 15 lines: # trace &quot;define=&gt; &quot; _expr-ah -------------------------------------------------------------------------------------------------------------------------------------------------------------------------</span>
<span id="L210" class="LineNr">210 </span> <span class="PreProc">return</span> macro-found?
<span id="L211" class="LineNr">211 </span> <span class="Delimiter">}</span>
<span id="L212" class="LineNr">212 </span> $macroexpand-iter:set: <span class="Delimiter">{</span>
@ -219,7 +219,7 @@ if ('onhashchange' in window) {
<span id="L222" class="LineNr">222 </span> <span class="PreProc">var</span> val-ah/<span class="muRegEdx">edx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> get rest, left
<span id="L223" class="LineNr">223 </span> <span class="PreProc">var</span> macro-found?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='macroexpand.mu.html#L46'>macroexpand-iter</a> val-ah, globals, trace
<span id="L224" class="LineNr">224 </span> <a href='trace.mu.html#L250'>trace-higher</a> trace
<span id="L225" class="Folded">225 </span><span class="Folded">+-- 15 lines: # trace &quot;set=&gt; &quot; _expr-ah -------------------------------------------------------------------------------------------------------------------------------------------------</span>
<span id="L225" class="Folded">225 </span><span class="Folded">+-- 15 lines: # trace &quot;set=&gt; &quot; _expr-ah ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------</span>
<span id="L240" class="LineNr">240 </span> <span class="PreProc">return</span> macro-found?
<span id="L241" class="LineNr">241 </span> <span class="Delimiter">}</span>
<span id="L242" class="LineNr">242 </span> <span class="muComment"># 'and' is like a function for macroexpansion purposes</span>
@ -244,7 +244,7 @@ if ('onhashchange' in window) {
<span id="L261" class="LineNr">261 </span> <span class="Delimiter">{</span>
<span id="L262" class="LineNr">262 </span> <span class="PreProc">var</span> definition-car-ah/<span class="muRegEax">eax</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> get definition, left
<span id="L263" class="LineNr">263 </span> <span class="PreProc">var</span> definition-car/<span class="muRegEax">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *definition-car-ah
<span id="L264" class="LineNr">264 </span> <span class="PreProc">var</span> macro?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='evaluate.mu.html#L1395'>litmac?</a> definition-car
<span id="L264" class="LineNr">264 </span> <span class="PreProc">var</span> macro?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='evaluate.mu.html#L1443'>litmac?</a> definition-car
<span id="L265" class="LineNr">265 </span> compare macro?, <span class="Constant">0</span>/false
<span id="L266" class="LineNr">266 </span> <span class="Delimiter">}</span>
<span id="L267" class="LineNr">267 </span> <span class="PreProc">break-if-=</span>
@ -252,9 +252,9 @@ if ('onhashchange' in window) {
<span id="L269" class="LineNr">269 </span> <span class="PreProc">var</span> macro-definition-ah/<span class="muRegEax">eax</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> get definition, right
<span id="L270" class="LineNr">270 </span> <span class="muComment"># TODO: check car(macro-definition) is litfn</span>
<span id="L271" class="LineNr">271 </span><span class="CommentedCode">#? turn-on-debug-print</span>
<span id="L272" class="LineNr">272 </span> <a href='evaluate.mu.html#L607'>apply</a> macro-definition-ah, rest-ah, expr-ah, globals, trace, <span class="Constant">0</span>/no-screen, <span class="Constant">0</span>/no-keyboard, <span class="Constant">0</span>/definitions-created, <span class="Constant">0</span>/call-number
<span id="L272" class="LineNr">272 </span> <a href='evaluate.mu.html#L655'>apply</a> macro-definition-ah, rest-ah, expr-ah, globals, trace, <span class="Constant">0</span>/no-screen, <span class="Constant">0</span>/no-keyboard, <span class="Constant">0</span>/definitions-created, <span class="Constant">0</span>/call-number
<span id="L273" class="LineNr">273 </span> <a href='trace.mu.html#L250'>trace-higher</a> trace
<span id="L274" class="Folded">274 </span><span class="Folded">+-- 15 lines: # trace &quot;1=&gt; &quot; _expr-ah ---------------------------------------------------------------------------------------------------------------------------------------------------</span>
<span id="L274" class="Folded">274 </span><span class="Folded">+-- 15 lines: # trace &quot;1=&gt; &quot; _expr-ah ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------</span>
<span id="L289" class="LineNr">289 </span> <span class="PreProc">return</span> <span class="Constant">1</span>/true
<span id="L290" class="LineNr">290 </span> <span class="Delimiter">}</span>
<span id="L291" class="LineNr">291 </span> <span class="muComment"># no macro found; process any macros within args</span>
@ -279,7 +279,7 @@ if ('onhashchange' in window) {
<span id="L310" class="LineNr">310 </span> <span class="PreProc">loop</span>
<span id="L311" class="LineNr">311 </span> <span class="Delimiter">}</span>
<span id="L312" class="LineNr">312 </span> <a href='trace.mu.html#L250'>trace-higher</a> trace
<span id="L313" class="Folded">313 </span><span class="Folded">+-- 15 lines: # trace &quot;=&gt; &quot; _expr-ah ----------------------------------------------------------------------------------------------------------------------------------------------------</span>
<span id="L313" class="Folded">313 </span><span class="Folded">+-- 15 lines: # trace &quot;=&gt; &quot; _expr-ah -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------</span>
<span id="L328" class="LineNr">328 </span> <span class="PreProc">return</span> result
<span id="L329" class="LineNr">329 </span><span class="Delimiter">}</span>
<span id="L330" class="LineNr">330 </span>
@ -301,29 +301,29 @@ if ('onhashchange' in window) {
<span id="L346" class="LineNr">346 </span> <span class="Delimiter">}</span>
<span id="L347" class="LineNr">347 </span> <span class="PreProc">var</span> cdr-ah/<span class="muRegEcx">ecx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> get expr, right
<span id="L348" class="LineNr">348 </span> <span class="PreProc">var</span> car-ah/<span class="muRegEbx">ebx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> get expr, left
<span id="L349" class="LineNr">349 </span> <span class="PreProc">var</span> <a href='evaluate.mu.html#L1141'>car</a>/<span class="muRegEax">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *car-ah
<span id="L349" class="LineNr">349 </span> <span class="PreProc">var</span> <a href='evaluate.mu.html#L1189'>car</a>/<span class="muRegEax">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *car-ah
<span id="L350" class="LineNr">350 </span> <span class="muComment"># if car is unquote or unquote-splice, check if cadr is unquote or</span>
<span id="L351" class="LineNr">351 </span> <span class="muComment"># unquote-splice.</span>
<span id="L352" class="LineNr">352 </span> $look-for-double-unquote:<a href='../502test.mu.html#L19'>check</a>: <span class="Delimiter">{</span>
<span id="L353" class="LineNr">353 </span> <span class="muComment"># if car is not an unquote, break</span>
<span id="L354" class="LineNr">354 </span> <span class="Delimiter">{</span>
<span id="L355" class="LineNr">355 </span> <span class="Delimiter">{</span>
<span id="L356" class="LineNr">356 </span> <span class="PreProc">var</span> unquote?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='cell.mu.html#L44'>symbol-equal?</a> <a href='evaluate.mu.html#L1141'>car</a>, <span class="Constant">&quot;,&quot;</span>
<span id="L356" class="LineNr">356 </span> <span class="PreProc">var</span> unquote?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='cell.mu.html#L44'>symbol-equal?</a> <a href='evaluate.mu.html#L1189'>car</a>, <span class="Constant">&quot;,&quot;</span>
<span id="L357" class="LineNr">357 </span> compare unquote?, <span class="Constant">0</span>/false
<span id="L358" class="LineNr">358 </span> <span class="Delimiter">}</span>
<span id="L359" class="LineNr">359 </span> <span class="PreProc">break-if-!=</span>
<span id="L360" class="LineNr">360 </span> <span class="PreProc">var</span> unquote-splice?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='cell.mu.html#L44'>symbol-equal?</a> <a href='evaluate.mu.html#L1141'>car</a>, <span class="Constant">&quot;,@&quot;</span>
<span id="L360" class="LineNr">360 </span> <span class="PreProc">var</span> unquote-splice?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='cell.mu.html#L44'>symbol-equal?</a> <a href='evaluate.mu.html#L1189'>car</a>, <span class="Constant">&quot;,@&quot;</span>
<span id="L361" class="LineNr">361 </span> compare unquote-splice?, <span class="Constant">0</span>/false
<span id="L362" class="LineNr">362 </span> <span class="PreProc">break-if-!=</span>
<span id="L363" class="LineNr">363 </span> <span class="PreProc">break</span> $look-for-double-unquote:<a href='../502test.mu.html#L19'>check</a>
<span id="L364" class="LineNr">364 </span> <span class="Delimiter">}</span>
<span id="L365" class="LineNr">365 </span> <span class="muComment"># if cdr is not a pair, break</span>
<span id="L366" class="LineNr">366 </span> <span class="PreProc">var</span> <a href='evaluate.mu.html#L1169'>cdr</a>/<span class="muRegEax">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *cdr-ah
<span id="L367" class="LineNr">367 </span> <span class="PreProc">var</span> cdr-type/<span class="muRegEcx">ecx</span>: (addr int) <span class="Special">&lt;-</span> get <a href='evaluate.mu.html#L1169'>cdr</a>, <span class="PreProc">type</span>
<span id="L366" class="LineNr">366 </span> <span class="PreProc">var</span> <a href='evaluate.mu.html#L1217'>cdr</a>/<span class="muRegEax">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *cdr-ah
<span id="L367" class="LineNr">367 </span> <span class="PreProc">var</span> cdr-type/<span class="muRegEcx">ecx</span>: (addr int) <span class="Special">&lt;-</span> get <a href='evaluate.mu.html#L1217'>cdr</a>, <span class="PreProc">type</span>
<span id="L368" class="LineNr">368 </span> compare *cdr-type, <span class="Constant">0</span>/pair
<span id="L369" class="LineNr">369 </span> <span class="PreProc">break-if-!=</span>
<span id="L370" class="LineNr">370 </span> <span class="muComment"># if cadr is not an unquote, break</span>
<span id="L371" class="LineNr">371 </span> <span class="PreProc">var</span> cadr-ah/<span class="muRegEax">eax</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> get <a href='evaluate.mu.html#L1169'>cdr</a>, left
<span id="L371" class="LineNr">371 </span> <span class="PreProc">var</span> cadr-ah/<span class="muRegEax">eax</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> get <a href='evaluate.mu.html#L1217'>cdr</a>, left
<span id="L372" class="LineNr">372 </span> <span class="PreProc">var</span> cadr/<span class="muRegEax">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *cadr-ah
<span id="L373" class="LineNr">373 </span> <span class="Delimiter">{</span>
<span id="L374" class="LineNr">374 </span> <span class="Delimiter">{</span>
@ -371,7 +371,7 @@ if ('onhashchange' in window) {
<span id="L416" class="LineNr">416 </span> <span class="PreProc">var</span> dummy/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='macroexpand.mu.html#L46'>macroexpand-iter</a> result-ah, globals, trace
<span id="L417" class="LineNr">417 </span> <span class="PreProc">var</span> error?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='trace.mu.html#L94'>has-errors?</a> trace
<span id="L418" class="LineNr">418 </span> <a href='../502test.mu.html#L32'>check-not</a> error?, <span class="Constant">&quot;F - <a href='macroexpand.mu.html#L397'>test-macroexpand</a>/error&quot;</span>
<span id="L419" class="LineNr">419 </span><span class="CommentedCode">#? dump-cell-from-cursor-over-full-screen result-ah</span>
<span id="L419" class="LineNr">419 </span><span class="CommentedCode">#? dump-cell-from-cursor-over-full-screen result-ah, 4/fg 0/bg</span>
<span id="L420" class="LineNr">420 </span> <span class="PreProc">var</span> _result/<span class="muRegEax">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *result-ah
<span id="L421" class="LineNr">421 </span> <span class="PreProc">var</span> result/<span class="muRegEdi">edi</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> copy _result
<span id="L422" class="LineNr">422 </span> <span class="muComment"># expected</span>
@ -384,7 +384,7 @@ if ('onhashchange' in window) {
<span id="L429" class="LineNr">429 </span><span class="CommentedCode">#? dump-cell-from-cursor-over-full-screen expected-ah</span>
<span id="L430" class="LineNr">430 </span> <span class="PreProc">var</span> expected/<span class="muRegEax">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *expected-ah
<span id="L431" class="LineNr">431 </span> <span class="muComment">#</span>
<span id="L432" class="LineNr">432 </span> <span class="PreProc">var</span> assertion/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='evaluate.mu.html#L1197'>cell-isomorphic?</a> result, expected, trace
<span id="L432" class="LineNr">432 </span> <span class="PreProc">var</span> assertion/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='evaluate.mu.html#L1245'>cell-isomorphic?</a> result, expected, trace
<span id="L433" class="LineNr">433 </span> <a href='../502test.mu.html#L19'>check</a> assertion, <span class="Constant">&quot;F - test-macroexpand&quot;</span>
<span id="L434" class="LineNr">434 </span><span class="Delimiter">}</span>
<span id="L435" class="LineNr">435 </span>
@ -422,7 +422,7 @@ if ('onhashchange' in window) {
<span id="L467" class="LineNr">467 </span> <a href='read.mu.html#L1'>read-cell</a> expected-gap, expected-ah, trace
<span id="L468" class="LineNr">468 </span> <span class="PreProc">var</span> expected/<span class="muRegEax">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *expected-ah
<span id="L469" class="LineNr">469 </span> <span class="muComment">#</span>
<span id="L470" class="LineNr">470 </span> <span class="PreProc">var</span> assertion/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='evaluate.mu.html#L1197'>cell-isomorphic?</a> result, expected, trace
<span id="L470" class="LineNr">470 </span> <span class="PreProc">var</span> assertion/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='evaluate.mu.html#L1245'>cell-isomorphic?</a> result, expected, trace
<span id="L471" class="LineNr">471 </span> <a href='../502test.mu.html#L19'>check</a> assertion, <span class="Constant">&quot;F - test-macroexpand-inside-anonymous-fn&quot;</span>
<span id="L472" class="LineNr">472 </span><span class="Delimiter">}</span>
<span id="L473" class="LineNr">473 </span>
@ -461,7 +461,7 @@ if ('onhashchange' in window) {
<span id="L506" class="LineNr">506 </span><span class="CommentedCode">#? dump-cell-from-cursor-over-full-screen expected-ah</span>
<span id="L507" class="LineNr">507 </span> <span class="PreProc">var</span> expected/<span class="muRegEax">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *expected-ah
<span id="L508" class="LineNr">508 </span> <span class="muComment">#</span>
<span id="L509" class="LineNr">509 </span> <span class="PreProc">var</span> assertion/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='evaluate.mu.html#L1197'>cell-isomorphic?</a> result, expected, trace
<span id="L509" class="LineNr">509 </span> <span class="PreProc">var</span> assertion/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='evaluate.mu.html#L1245'>cell-isomorphic?</a> result, expected, trace
<span id="L510" class="LineNr">510 </span> <a href='../502test.mu.html#L19'>check</a> assertion, <span class="Constant">&quot;F - test-macroexpand-inside-fn-call&quot;</span>
<span id="L511" class="LineNr">511 </span><span class="Delimiter">}</span>
<span id="L512" class="LineNr">512 </span>
@ -529,7 +529,7 @@ if ('onhashchange' in window) {
<span id="L574" class="LineNr">574 </span> <a href='read.mu.html#L1'>read-cell</a> expected-gap, expected-ah, trace
<span id="L575" class="LineNr">575 </span> <span class="PreProc">var</span> expected/<span class="muRegEax">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *expected-ah
<span id="L576" class="LineNr">576 </span> <span class="muComment">#</span>
<span id="L577" class="LineNr">577 </span> <span class="PreProc">var</span> assertion/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='evaluate.mu.html#L1197'>cell-isomorphic?</a> result, expected, trace
<span id="L577" class="LineNr">577 </span> <span class="PreProc">var</span> assertion/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='evaluate.mu.html#L1245'>cell-isomorphic?</a> result, expected, trace
<span id="L578" class="LineNr">578 </span> <a href='../502test.mu.html#L19'>check</a> assertion, <span class="Constant">&quot;F - test-macroexpand-inside-backquote-unquote&quot;</span>
<span id="L579" class="LineNr">579 </span><span class="Delimiter">}</span>
<span id="L580" class="LineNr">580 </span>
@ -555,7 +555,7 @@ if ('onhashchange' in window) {
<span id="L600" class="LineNr">600 </span> <span class="PreProc">var</span> dummy/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='macroexpand.mu.html#L46'>macroexpand-iter</a> result-ah, globals, trace
<span id="L601" class="LineNr">601 </span> <span class="PreProc">var</span> error?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='trace.mu.html#L94'>has-errors?</a> trace
<span id="L602" class="LineNr">602 </span> <a href='../502test.mu.html#L32'>check-not</a> error?, <span class="Constant">&quot;F - test-macroexpand-inside-nested-backquote-unquote/error&quot;</span>
<span id="L603" class="LineNr">603 </span> <a href='print.mu.html#L136'>dump-cell-from-cursor-over-full-screen</a> result-ah
<span id="L603" class="LineNr">603 </span><span class="CommentedCode">#? dump-cell-from-cursor-over-full-screen result-ah</span>
<span id="L604" class="LineNr">604 </span> <span class="PreProc">var</span> _result/<span class="muRegEax">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *result-ah
<span id="L605" class="LineNr">605 </span> <span class="PreProc">var</span> result/<span class="muRegEdi">edi</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> copy _result
<span id="L606" class="LineNr">606 </span> <span class="muComment"># expected</span>
@ -565,10 +565,10 @@ if ('onhashchange' in window) {
<span id="L610" class="LineNr">610 </span> <span class="PreProc">var</span> expected-h: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L611" class="LineNr">611 </span> <span class="PreProc">var</span> expected-ah/<span class="muRegEdx">edx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address expected-h
<span id="L612" class="LineNr">612 </span> <a href='read.mu.html#L1'>read-cell</a> expected-gap, expected-ah, trace
<span id="L613" class="LineNr">613 </span> <a href='print.mu.html#L136'>dump-cell-from-cursor-over-full-screen</a> expected-ah
<span id="L613" class="LineNr">613 </span><span class="CommentedCode">#? dump-cell-from-cursor-over-full-screen expected-ah</span>
<span id="L614" class="LineNr">614 </span> <span class="PreProc">var</span> expected/<span class="muRegEax">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *expected-ah
<span id="L615" class="LineNr">615 </span> <span class="muComment">#</span>
<span id="L616" class="LineNr">616 </span> <span class="PreProc">var</span> assertion/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='evaluate.mu.html#L1197'>cell-isomorphic?</a> result, expected, trace
<span id="L616" class="LineNr">616 </span> <span class="PreProc">var</span> assertion/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='evaluate.mu.html#L1245'>cell-isomorphic?</a> result, expected, trace
<span id="L617" class="LineNr">617 </span> <a href='../502test.mu.html#L19'>check</a> assertion, <span class="Constant">&quot;F - test-macroexpand-inside-nested-backquote-unquote&quot;</span>
<span id="L618" class="LineNr">618 </span><span class="Delimiter">}</span>
<span id="L619" class="LineNr">619 </span>

478
html/shell/parenthesize.mu.html generated Normal file
View File

@ -0,0 +1,478 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Mu - shell/parenthesize.mu</title>
<meta name="Generator" content="Vim/8.1">
<meta name="plugin-version" content="vim8.1_v1">
<meta name="syntax" content="none">
<meta name="settings" content="number_lines,use_css,pre_wrap,no_foldcolumn,expand_tabs,line_ids,prevent_copy=">
<meta name="colorscheme" content="minimal-dark">
<style type="text/css">
<!--
pre { white-space: pre-wrap; font-family: monospace; color: #000000; background-color: #a8a8a8; }
body { font-size:12pt; font-family: monospace; color: #000000; background-color: #a8a8a8; }
a { color:inherit; }
* { font-size:12pt; font-size: 1em; }
.LineNr { }
.Delimiter { color: #c000c0; }
.muFunction { color: #af5f00; text-decoration: underline; }
.muRegEdx { color: #878700; }
.muRegEbx { color: #8787af; }
.muRegEsi { color: #87d787; }
.muRegEdi { color: #87ffd7; }
.Constant { color: #008787; }
.Special { color: #ff6060; }
.PreProc { color: #c000c0; }
.CommentedCode { color: #8a8a8a; }
.muTest { color: #5f8700; }
.muComment { color: #005faf; }
.muS1Comment { color: #0000af; }
.muRegEax { color: #875f00; }
.muRegEcx { color: #af875f; }
-->
</style>
<script type='text/javascript'>
<!--
/* function to open any folds containing a jumped-to line before jumping to it */
function JumpToLine()
{
var lineNum;
lineNum = window.location.hash;
lineNum = lineNum.substr(1); /* strip off '#' */
if (lineNum.indexOf('L') == -1) {
lineNum = 'L'+lineNum;
}
var lineElem = document.getElementById(lineNum);
/* Always jump to new location even if the line was hidden inside a fold, or
* we corrected the raw number to a line ID.
*/
if (lineElem) {
lineElem.scrollIntoView(true);
}
return true;
}
if ('onhashchange' in window) {
window.onhashchange = JumpToLine;
}
-->
</script>
</head>
<body onload='JumpToLine();'>
<a href='https://github.com/akkartik/mu/blob/main/shell/parenthesize.mu'>https://github.com/akkartik/mu/blob/main/shell/parenthesize.mu</a>
<pre id='vimCodeElement'>
<span id="L1" class="LineNr"> 1 </span><span class="muComment">## insert explicit parens based on indentation</span>
<span id="L2" class="LineNr"> 2 </span>
<span id="L3" class="LineNr"> 3 </span><span class="muComment"># Design goals:</span>
<span id="L4" class="LineNr"> 4 </span><span class="muComment"># keywords in other languages should look different from functions: def, if, while, etc.</span>
<span id="L5" class="LineNr"> 5 </span><span class="muComment"># fully-parenthesized expressions should not be messed with</span>
<span id="L6" class="LineNr"> 6 </span><span class="muComment"># ignore indent when lines start with parens</span>
<span id="L7" class="LineNr"> 7 </span><span class="muComment"># ignore indent inside parens</span>
<span id="L8" class="LineNr"> 8 </span><span class="muComment"># no modes to disable this pass</span>
<span id="L9" class="LineNr"> 9 </span><span class="muComment"># introduce no new operators</span>
<span id="L10" class="LineNr"> 10 </span><span class="muComment"># the language doesn't use nested lists like Scheme's `cond`</span>
<span id="L11" class="LineNr"> 11 </span><span class="muComment"># lines with one word are never wrapped in parens</span>
<span id="L12" class="LineNr"> 12 </span><span class="muComment"># encourage macros to explicitly insert all parens</span>
<span id="L13" class="LineNr"> 13 </span><span class="muComment"># ignore indent inside backquote</span>
<span id="L14" class="LineNr"> 14 </span>
<span id="L15" class="LineNr"> 15 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='parenthesize.mu.html#L15'>parenthesize</a></span> in: (addr stream <a href='tokenize.mu.html#L3'>token</a>), out: (addr stream <a href='tokenize.mu.html#L3'>token</a>), trace: (addr trace) <span class="Delimiter">{</span>
<span id="L16" class="LineNr"> 16 </span> <a href='trace.mu.html#L185'>trace-text</a> trace, <span class="Constant">&quot;parenthesize&quot;</span>, <span class="Constant">&quot;insert parens&quot;</span>
<span id="L17" class="LineNr"> 17 </span> <a href='trace.mu.html#L239'>trace-lower</a> trace
<span id="L18" class="LineNr"> 18 </span> <span class="PreProc">var</span> buffer-storage: (stream <a href='tokenize.mu.html#L3'>token</a> <span class="Constant">0x40</span>)
<span id="L19" class="LineNr"> 19 </span> <span class="PreProc">var</span> buffer/<span class="muRegEdi">edi</span>: (addr stream <a href='tokenize.mu.html#L3'>token</a>) <span class="Special">&lt;-</span> address buffer-storage
<span id="L20" class="LineNr"> 20 </span> <span class="PreProc">var</span> curr-line-indent: int
<span id="L21" class="LineNr"> 21 </span> <span class="PreProc">var</span> num-words-in-line: int
<span id="L22" class="LineNr"> 22 </span> <span class="PreProc">var</span> paren-at-start-of-line?: boolean
<span id="L23" class="LineNr"> 23 </span> <span class="PreProc">var</span> explicit-open-parens-storage: int
<span id="L24" class="LineNr"> 24 </span> <span class="PreProc">var</span> explicit-open-parens/<span class="muRegEbx">ebx</span>: (addr int) <span class="Special">&lt;-</span> address explicit-open-parens-storage
<span id="L25" class="LineNr"> 25 </span> <span class="PreProc">var</span> implicit-open-parens-storage: <a href='int-stack.mu.html#L1'>int-stack</a>
<span id="L26" class="LineNr"> 26 </span> <span class="PreProc">var</span> implicit-open-parens/<span class="muRegEsi">esi</span>: (addr <a href='int-stack.mu.html#L1'>int-stack</a>) <span class="Special">&lt;-</span> address implicit-open-parens-storage
<span id="L27" class="LineNr"> 27 </span> <a href='int-stack.mu.html#L6'>initialize-int-stack</a> implicit-open-parens, <span class="Constant">0x10</span> <span class="muComment"># potentially a major memory leak</span>
<span id="L28" class="LineNr"> 28 </span> <a href='../106stream.subx.html#L59'>rewind-stream</a> in
<span id="L29" class="LineNr"> 29 </span> <span class="Delimiter">{</span>
<span id="L30" class="LineNr"> 30 </span> <span class="PreProc">var</span> done?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='../309stream.subx.html#L6'>stream-empty?</a> in
<span id="L31" class="LineNr"> 31 </span> compare done?, <span class="Constant">0</span>/false
<span id="L32" class="LineNr"> 32 </span> <span class="PreProc">break-if-!=</span>
<span id="L33" class="LineNr"> 33 </span> <span class="muComment">#</span>
<span id="L34" class="LineNr"> 34 </span> <span class="PreProc">var</span> curr-token-storage: <a href='tokenize.mu.html#L3'>token</a>
<span id="L35" class="LineNr"> 35 </span> <span class="PreProc">var</span> curr-token/<span class="muRegEcx">ecx</span>: (addr <a href='tokenize.mu.html#L3'>token</a>) <span class="Special">&lt;-</span> address curr-token-storage
<span id="L36" class="LineNr"> 36 </span> <a href='../309stream.subx.html#L104'>read-from-stream</a> in, curr-token
<span id="L37" class="LineNr"> 37 </span><span class="CommentedCode">#? dump-token-from-cursor curr-token</span>
<span id="L38" class="LineNr"> 38 </span> <span class="muComment"># update state</span>
<span id="L39" class="LineNr"> 39 </span> <span class="Delimiter">{</span>
<span id="L40" class="LineNr"> 40 </span> <span class="PreProc">var</span> is-indent?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='tokenize.mu.html#L1011'>indent-token?</a> curr-token
<span id="L41" class="LineNr"> 41 </span> compare is-indent?, <span class="Constant">0</span>/false
<span id="L42" class="LineNr"> 42 </span> <span class="PreProc">break-if-=</span>
<span id="L43" class="LineNr"> 43 </span> copy-to num-words-in-line, <span class="Constant">0</span>
<span id="L44" class="LineNr"> 44 </span> copy-to paren-at-start-of-line?, <span class="Constant">0</span>/false
<span id="L45" class="LineNr"> 45 </span> <span class="PreProc">var</span> tmp/<span class="muRegEax">eax</span>: int <span class="Special">&lt;-</span> <a href='parenthesize.mu.html#L145'>indent-level</a> curr-token
<span id="L46" class="LineNr"> 46 </span> copy-to curr-line-indent, tmp
<span id="L47" class="LineNr"> 47 </span> <span class="Delimiter">}</span>
<span id="L48" class="LineNr"> 48 </span> <span class="Delimiter">{</span>
<span id="L49" class="LineNr"> 49 </span> <span class="PreProc">var</span> is-word?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='parenthesize.mu.html#L151'>word-token?</a> curr-token
<span id="L50" class="LineNr"> 50 </span> compare is-word?, <span class="Constant">0</span>/false
<span id="L51" class="LineNr"> 51 </span> <span class="PreProc">break-if-=</span>
<span id="L52" class="LineNr"> 52 </span> increment num-words-in-line
<span id="L53" class="LineNr"> 53 </span> <span class="Delimiter">}</span>
<span id="L54" class="LineNr"> 54 </span> <span class="Delimiter">{</span>
<span id="L55" class="LineNr"> 55 </span> compare num-words-in-line, <span class="Constant">0</span>
<span id="L56" class="LineNr"> 56 </span> <span class="PreProc">break-if-!=</span>
<span id="L57" class="LineNr"> 57 </span> <span class="PreProc">var</span> is-open?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='tokenize.mu.html#L931'>open-paren-token?</a> curr-token
<span id="L58" class="LineNr"> 58 </span> compare is-open?, <span class="Constant">0</span>/false
<span id="L59" class="LineNr"> 59 </span> <span class="PreProc">break-if-=</span>
<span id="L60" class="LineNr"> 60 </span> copy-to paren-at-start-of-line?, <span class="Constant">1</span>/true
<span id="L61" class="LineNr"> 61 </span> <span class="Delimiter">}</span>
<span id="L62" class="LineNr"> 62 </span> <span class="muComment">#</span>
<span id="L63" class="LineNr"> 63 </span> $parenthesize:<a href='parenthesize.mu.html#L196'>emit</a>: <span class="Delimiter">{</span>
<span id="L64" class="LineNr"> 64 </span> <span class="Delimiter">{</span>
<span id="L65" class="LineNr"> 65 </span> compare paren-at-start-of-line?, <span class="Constant">0</span>/false
<span id="L66" class="LineNr"> 66 </span> <span class="PreProc">break-if-=</span>
<span id="L67" class="LineNr"> 67 </span><span class="CommentedCode">#? draw-text-wrapping-right-then-down-from-cursor-over-full-screen 0/screen &quot;A&quot;, 7/fg 0/bg</span>
<span id="L68" class="LineNr"> 68 </span> <a href='parenthesize.mu.html#L176'>emit-all</a> buffer, curr-token, out, explicit-open-parens
<span id="L69" class="LineNr"> 69 </span> <span class="PreProc">break</span> $parenthesize:<a href='parenthesize.mu.html#L196'>emit</a>
<span id="L70" class="LineNr"> 70 </span> <span class="Delimiter">}</span>
<span id="L71" class="LineNr"> 71 </span> <span class="Delimiter">{</span>
<span id="L72" class="LineNr"> 72 </span> <span class="PreProc">var</span> is-indent?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='tokenize.mu.html#L1011'>indent-token?</a> curr-token
<span id="L73" class="LineNr"> 73 </span> compare is-indent?, <span class="Constant">0</span>/false
<span id="L74" class="LineNr"> 74 </span> <span class="PreProc">break-if-=</span>
<span id="L75" class="LineNr"> 75 </span><span class="CommentedCode">#? draw-text-wrapping-right-then-down-from-cursor-over-full-screen 0/screen &quot;B&quot;, 7/fg 0/bg</span>
<span id="L76" class="LineNr"> 76 </span> <a href='parenthesize.mu.html#L176'>emit-all</a> buffer, curr-token, out, explicit-open-parens
<span id="L77" class="LineNr"> 77 </span> <span class="PreProc">break</span> $parenthesize:<a href='parenthesize.mu.html#L196'>emit</a>
<span id="L78" class="LineNr"> 78 </span> <span class="Delimiter">}</span>
<span id="L79" class="LineNr"> 79 </span> <span class="Delimiter">{</span>
<span id="L80" class="LineNr"> 80 </span> compare num-words-in-line, <span class="Constant">2</span>
<span id="L81" class="LineNr"> 81 </span> <span class="PreProc">break-if-&gt;=</span>
<span id="L82" class="LineNr"> 82 </span><span class="CommentedCode">#? draw-text-wrapping-right-then-down-from-cursor-over-full-screen 0/screen &quot;C&quot;, 7/fg 0/bg</span>
<span id="L83" class="LineNr"> 83 </span> <a href='../309stream.subx.html#L54'>write-to-stream</a> buffer, curr-token
<span id="L84" class="LineNr"> 84 </span> <span class="PreProc">break</span> $parenthesize:<a href='parenthesize.mu.html#L196'>emit</a>
<span id="L85" class="LineNr"> 85 </span> <span class="Delimiter">}</span>
<span id="L86" class="LineNr"> 86 </span> <span class="Delimiter">{</span>
<span id="L87" class="LineNr"> 87 </span> compare num-words-in-line, <span class="Constant">2</span>
<span id="L88" class="LineNr"> 88 </span> <span class="PreProc">break-if-!=</span>
<span id="L89" class="LineNr"> 89 </span> <span class="PreProc">var</span> is-word?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='parenthesize.mu.html#L151'>word-token?</a> curr-token
<span id="L90" class="LineNr"> 90 </span> compare is-word?, <span class="Constant">0</span>/false
<span id="L91" class="LineNr"> 91 </span> <span class="PreProc">break-if-=</span>
<span id="L92" class="LineNr"> 92 </span> compare *explicit-open-parens, <span class="Constant">0</span>
<span id="L93" class="LineNr"> 93 </span> <span class="PreProc">break-if-!=</span>
<span id="L94" class="LineNr"> 94 </span><span class="CommentedCode">#? draw-text-wrapping-right-then-down-from-cursor-over-full-screen 0/screen &quot;(\n&quot;, 7/fg 0/bg</span>
<span id="L95" class="LineNr"> 95 </span> <span class="PreProc">var</span> paren-storage: <a href='tokenize.mu.html#L3'>token</a>
<span id="L96" class="LineNr"> 96 </span> <span class="PreProc">var</span> paren-token/<span class="muRegEax">eax</span>: (addr <a href='tokenize.mu.html#L3'>token</a>) <span class="Special">&lt;-</span> address paren-storage
<span id="L97" class="LineNr"> 97 </span> <a href='tokenize.mu.html#L1030'>initialize-token</a> paren-token, <span class="Constant">&quot;(&quot;</span>
<span id="L98" class="LineNr"> 98 </span> <a href='../309stream.subx.html#L54'>write-to-stream</a> out, paren-token
<span id="L99" class="LineNr"> 99 </span> <a href='int-stack.mu.html#L14'>push-int-stack</a> implicit-open-parens, curr-line-indent
<span id="L100" class="LineNr">100 </span> <span class="Delimiter">}</span>
<span id="L101" class="LineNr">101 </span> <a href='parenthesize.mu.html#L176'>emit-all</a> buffer, curr-token, out, explicit-open-parens
<span id="L102" class="LineNr">102 </span> <span class="Delimiter">}</span>
<span id="L103" class="LineNr">103 </span> <span class="Delimiter">{</span>
<span id="L104" class="LineNr">104 </span> <span class="PreProc">var</span> is-indent?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='tokenize.mu.html#L1011'>indent-token?</a> curr-token
<span id="L105" class="LineNr">105 </span> compare is-indent?, <span class="Constant">0</span>/false
<span id="L106" class="LineNr">106 </span> <span class="PreProc">break-if-=</span>
<span id="L107" class="LineNr">107 </span> <span class="Delimiter">{</span>
<span id="L108" class="LineNr">108 </span> <span class="muS1Comment"># . loop check</span>
<span id="L109" class="LineNr">109 </span> <span class="PreProc">var</span> done?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='int-stack.mu.html#L43'>int-stack-empty?</a> implicit-open-parens
<span id="L110" class="LineNr">110 </span> compare done?, <span class="Constant">0</span>/false
<span id="L111" class="LineNr">111 </span> <span class="PreProc">break-if-!=</span>
<span id="L112" class="LineNr">112 </span> <span class="PreProc">var</span> top-indent/<span class="muRegEax">eax</span>: int <span class="Special">&lt;-</span> <a href='int-stack.mu.html#L54'>int-stack-top</a> implicit-open-parens
<span id="L113" class="LineNr">113 </span> compare top-indent, curr-line-indent
<span id="L114" class="LineNr">114 </span> <span class="PreProc">break-if-&lt;</span>
<span id="L115" class="LineNr">115 </span> <span class="muS1Comment"># . loop body</span>
<span id="L116" class="LineNr">116 </span> <span class="PreProc">var</span> paren-storage: <a href='tokenize.mu.html#L3'>token</a>
<span id="L117" class="LineNr">117 </span> <span class="PreProc">var</span> paren-token/<span class="muRegEax">eax</span>: (addr <a href='tokenize.mu.html#L3'>token</a>) <span class="Special">&lt;-</span> address paren-storage
<span id="L118" class="LineNr">118 </span> <a href='tokenize.mu.html#L1030'>initialize-token</a> paren-token, <span class="Constant">&quot;)&quot;</span>
<span id="L119" class="LineNr">119 </span> <a href='../309stream.subx.html#L54'>write-to-stream</a> out, paren-token
<span id="L120" class="LineNr">120 </span> <span class="muS1Comment"># . update</span>
<span id="L121" class="LineNr">121 </span> <span class="PreProc">var</span> dummy/<span class="muRegEax">eax</span>: int <span class="Special">&lt;-</span> <a href='int-stack.mu.html#L26'>pop-int-stack</a> implicit-open-parens
<span id="L122" class="LineNr">122 </span> <span class="PreProc">loop</span>
<span id="L123" class="LineNr">123 </span> <span class="Delimiter">}</span>
<span id="L124" class="LineNr">124 </span> <span class="Delimiter">}</span>
<span id="L125" class="LineNr">125 </span> <span class="PreProc">loop</span>
<span id="L126" class="LineNr">126 </span> <span class="Delimiter">}</span>
<span id="L127" class="LineNr">127 </span> <a href='parenthesize.mu.html#L176'>emit-all</a> buffer, <span class="Constant">0</span>/no-curr-token, out, explicit-open-parens
<span id="L128" class="LineNr">128 </span> <span class="Delimiter">{</span>
<span id="L129" class="LineNr">129 </span> <span class="muS1Comment"># . loop check</span>
<span id="L130" class="LineNr">130 </span> <span class="PreProc">var</span> done?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='int-stack.mu.html#L43'>int-stack-empty?</a> implicit-open-parens
<span id="L131" class="LineNr">131 </span> compare done?, <span class="Constant">0</span>/false
<span id="L132" class="LineNr">132 </span> <span class="PreProc">break-if-!=</span>
<span id="L133" class="LineNr">133 </span> <span class="muS1Comment"># . loop body</span>
<span id="L134" class="LineNr">134 </span> <span class="PreProc">var</span> paren-storage: <a href='tokenize.mu.html#L3'>token</a>
<span id="L135" class="LineNr">135 </span> <span class="PreProc">var</span> paren-token/<span class="muRegEax">eax</span>: (addr <a href='tokenize.mu.html#L3'>token</a>) <span class="Special">&lt;-</span> address paren-storage
<span id="L136" class="LineNr">136 </span> <a href='tokenize.mu.html#L1030'>initialize-token</a> paren-token, <span class="Constant">&quot;)&quot;</span>
<span id="L137" class="LineNr">137 </span> <a href='../309stream.subx.html#L54'>write-to-stream</a> out, paren-token
<span id="L138" class="LineNr">138 </span> <span class="muS1Comment"># . update</span>
<span id="L139" class="LineNr">139 </span> <span class="PreProc">var</span> dummy/<span class="muRegEax">eax</span>: int <span class="Special">&lt;-</span> <a href='int-stack.mu.html#L26'>pop-int-stack</a> implicit-open-parens
<span id="L140" class="LineNr">140 </span> <span class="PreProc">loop</span>
<span id="L141" class="LineNr">141 </span> <span class="Delimiter">}</span>
<span id="L142" class="LineNr">142 </span> <a href='trace.mu.html#L250'>trace-higher</a> trace
<span id="L143" class="LineNr">143 </span><span class="Delimiter">}</span>
<span id="L144" class="LineNr">144 </span>
<span id="L145" class="LineNr">145 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='parenthesize.mu.html#L145'>indent-level</a></span> _in: (addr <a href='tokenize.mu.html#L3'>token</a>)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: int <span class="Delimiter">{</span>
<span id="L146" class="LineNr">146 </span> <span class="PreProc">var</span> in/<span class="muRegEax">eax</span>: (addr <a href='tokenize.mu.html#L3'>token</a>) <span class="Special">&lt;-</span> copy _in
<span id="L147" class="LineNr">147 </span> <span class="PreProc">var</span> result/<span class="muRegEax">eax</span>: (addr int) <span class="Special">&lt;-</span> get in, number-data
<span id="L148" class="LineNr">148 </span> <span class="PreProc">return</span> *result
<span id="L149" class="LineNr">149 </span><span class="Delimiter">}</span>
<span id="L150" class="LineNr">150 </span>
<span id="L151" class="LineNr">151 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='parenthesize.mu.html#L151'>word-token?</a></span> in: (addr <a href='tokenize.mu.html#L3'>token</a>)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: boolean <span class="Delimiter">{</span>
<span id="L152" class="LineNr">152 </span> <span class="Delimiter">{</span>
<span id="L153" class="LineNr">153 </span> <span class="PreProc">var</span> is-indent?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='tokenize.mu.html#L1011'>indent-token?</a> in
<span id="L154" class="LineNr">154 </span> compare is-indent?, <span class="Constant">0</span>/false
<span id="L155" class="LineNr">155 </span> <span class="PreProc">break-if-!=</span>
<span id="L156" class="LineNr">156 </span> <span class="PreProc">var</span> is-bracket?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='tokenize.mu.html#L878'>bracket-token?</a> in <span class="muComment"># overzealously checks for [], but shouldn't ever encounter it</span>
<span id="L157" class="LineNr">157 </span> compare is-bracket?, <span class="Constant">0</span>/false
<span id="L158" class="LineNr">158 </span> <span class="PreProc">break-if-!=</span>
<span id="L159" class="LineNr">159 </span> <span class="PreProc">var</span> is-quote?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='tokenize.mu.html#L895'>quote-token?</a> in
<span id="L160" class="LineNr">160 </span> compare is-quote?, <span class="Constant">0</span>/false
<span id="L161" class="LineNr">161 </span> <span class="PreProc">break-if-!=</span>
<span id="L162" class="LineNr">162 </span> <span class="PreProc">var</span> is-backquote?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='tokenize.mu.html#L904'>backquote-token?</a> in
<span id="L163" class="LineNr">163 </span> compare is-backquote?, <span class="Constant">0</span>/false
<span id="L164" class="LineNr">164 </span> <span class="PreProc">break-if-!=</span>
<span id="L165" class="LineNr">165 </span> <span class="PreProc">var</span> is-unquote?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='tokenize.mu.html#L913'>unquote-token?</a> in
<span id="L166" class="LineNr">166 </span> compare is-unquote?, <span class="Constant">0</span>/false
<span id="L167" class="LineNr">167 </span> <span class="PreProc">break-if-!=</span>
<span id="L168" class="LineNr">168 </span> <span class="PreProc">var</span> is-unquote-splice?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='tokenize.mu.html#L922'>unquote-splice-token?</a> in
<span id="L169" class="LineNr">169 </span> compare is-unquote-splice?, <span class="Constant">0</span>/false
<span id="L170" class="LineNr">170 </span> <span class="PreProc">break-if-!=</span>
<span id="L171" class="LineNr">171 </span> <span class="PreProc">return</span> <span class="Constant">1</span>/true
<span id="L172" class="LineNr">172 </span> <span class="Delimiter">}</span>
<span id="L173" class="LineNr">173 </span> <span class="PreProc">return</span> <span class="Constant">0</span>/false
<span id="L174" class="LineNr">174 </span><span class="Delimiter">}</span>
<span id="L175" class="LineNr">175 </span>
<span id="L176" class="LineNr">176 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='parenthesize.mu.html#L176'>emit-all</a></span> first: (addr stream <a href='tokenize.mu.html#L3'>token</a>), second: (addr <a href='tokenize.mu.html#L3'>token</a>), out: (addr stream <a href='tokenize.mu.html#L3'>token</a>), explicit-open-parens: (addr int) <span class="Delimiter">{</span>
<span id="L177" class="LineNr">177 </span> <a href='../106stream.subx.html#L59'>rewind-stream</a> first
<span id="L178" class="LineNr">178 </span> <span class="Delimiter">{</span>
<span id="L179" class="LineNr">179 </span> <span class="PreProc">var</span> done?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='../309stream.subx.html#L6'>stream-empty?</a> first
<span id="L180" class="LineNr">180 </span> compare done?, <span class="Constant">0</span>/false
<span id="L181" class="LineNr">181 </span> <span class="PreProc">break-if-!=</span>
<span id="L182" class="LineNr">182 </span> <span class="PreProc">var</span> curr-token-storage: <a href='tokenize.mu.html#L3'>token</a>
<span id="L183" class="LineNr">183 </span> <span class="PreProc">var</span> curr-token/<span class="muRegEax">eax</span>: (addr <a href='tokenize.mu.html#L3'>token</a>) <span class="Special">&lt;-</span> address curr-token-storage
<span id="L184" class="LineNr">184 </span> <a href='../309stream.subx.html#L104'>read-from-stream</a> first, curr-token
<span id="L185" class="LineNr">185 </span> <a href='parenthesize.mu.html#L196'>emit</a> curr-token, out, explicit-open-parens
<span id="L186" class="LineNr">186 </span> <span class="PreProc">loop</span>
<span id="L187" class="LineNr">187 </span> <span class="Delimiter">}</span>
<span id="L188" class="LineNr">188 </span> <a href='../106stream.subx.html#L20'>clear-stream</a> first
<span id="L189" class="LineNr">189 </span> <span class="Delimiter">{</span>
<span id="L190" class="LineNr">190 </span> compare second, <span class="Constant">0</span>
<span id="L191" class="LineNr">191 </span> <span class="PreProc">break-if-=</span>
<span id="L192" class="LineNr">192 </span> <a href='parenthesize.mu.html#L196'>emit</a> second, out, explicit-open-parens
<span id="L193" class="LineNr">193 </span> <span class="Delimiter">}</span>
<span id="L194" class="LineNr">194 </span><span class="Delimiter">}</span>
<span id="L195" class="LineNr">195 </span>
<span id="L196" class="LineNr">196 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='parenthesize.mu.html#L196'>emit</a></span> t: (addr <a href='tokenize.mu.html#L3'>token</a>), out: (addr stream <a href='tokenize.mu.html#L3'>token</a>), explicit-open-parens: (addr int) <span class="Delimiter">{</span>
<span id="L197" class="LineNr">197 </span> <span class="Delimiter">{</span>
<span id="L198" class="LineNr">198 </span> <span class="PreProc">var</span> is-indent?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='tokenize.mu.html#L1011'>indent-token?</a> t
<span id="L199" class="LineNr">199 </span> compare is-indent?, <span class="Constant">0</span>/false
<span id="L200" class="LineNr">200 </span> <span class="PreProc">break-if-=</span>
<span id="L201" class="LineNr">201 </span> <span class="PreProc">return</span>
<span id="L202" class="LineNr">202 </span> <span class="Delimiter">}</span>
<span id="L203" class="LineNr">203 </span> <a href='../309stream.subx.html#L54'>write-to-stream</a> out, t
<span id="L204" class="LineNr">204 </span> <span class="PreProc">var</span> explicit-open-parens/<span class="muRegEdi">edi</span>: (addr int) <span class="Special">&lt;-</span> copy explicit-open-parens
<span id="L205" class="LineNr">205 </span> <span class="Delimiter">{</span>
<span id="L206" class="LineNr">206 </span> <span class="PreProc">var</span> is-open?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='tokenize.mu.html#L931'>open-paren-token?</a> t
<span id="L207" class="LineNr">207 </span> compare is-open?, <span class="Constant">0</span>/false
<span id="L208" class="LineNr">208 </span> <span class="PreProc">break-if-=</span>
<span id="L209" class="LineNr">209 </span> increment *explicit-open-parens
<span id="L210" class="LineNr">210 </span> <span class="Delimiter">}</span>
<span id="L211" class="LineNr">211 </span> <span class="Delimiter">{</span>
<span id="L212" class="LineNr">212 </span> <span class="PreProc">var</span> is-close?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='tokenize.mu.html#L947'>close-paren-token?</a> t
<span id="L213" class="LineNr">213 </span> compare is-close?, <span class="Constant">0</span>/false
<span id="L214" class="LineNr">214 </span> <span class="PreProc">break-if-=</span>
<span id="L215" class="LineNr">215 </span> decrement *explicit-open-parens
<span id="L216" class="LineNr">216 </span> compare *explicit-open-parens, <span class="Constant">0</span>
<span id="L217" class="LineNr">217 </span> <span class="PreProc">break-if-&gt;=</span>
<span id="L218" class="LineNr">218 </span> <a href='../317abort.subx.html#L5'>abort</a> <span class="Constant">&quot;emit: extra ')'&quot;</span>
<span id="L219" class="LineNr">219 </span> <span class="Delimiter">}</span>
<span id="L220" class="LineNr">220 </span><span class="Delimiter">}</span>
<span id="L221" class="LineNr">221 </span>
<span id="L222" class="LineNr">222 </span><span class="muComment"># helper for checking parenthesize</span>
<span id="L223" class="LineNr">223 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='parenthesize.mu.html#L223'>emit-salient-tokens</a></span> in: (addr stream <a href='tokenize.mu.html#L3'>token</a>), out: (addr stream <a href='tokenize.mu.html#L3'>token</a>) <span class="Delimiter">{</span>
<span id="L224" class="LineNr">224 </span> <a href='../106stream.subx.html#L59'>rewind-stream</a> in
<span id="L225" class="LineNr">225 </span> <span class="Delimiter">{</span>
<span id="L226" class="LineNr">226 </span> <span class="PreProc">var</span> done?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='../309stream.subx.html#L6'>stream-empty?</a> in
<span id="L227" class="LineNr">227 </span> compare done?, <span class="Constant">0</span>/false
<span id="L228" class="LineNr">228 </span> <span class="PreProc">break-if-!=</span>
<span id="L229" class="LineNr">229 </span> <span class="PreProc">var</span> token-storage: <a href='tokenize.mu.html#L3'>token</a>
<span id="L230" class="LineNr">230 </span> <span class="PreProc">var</span> <a href='tokenize.mu.html#L3'>token</a>/<span class="muRegEdx">edx</span>: (addr <a href='tokenize.mu.html#L3'>token</a>) <span class="Special">&lt;-</span> address token-storage
<span id="L231" class="LineNr">231 </span> <a href='../309stream.subx.html#L104'>read-from-stream</a> in, <a href='tokenize.mu.html#L3'>token</a>
<span id="L232" class="LineNr">232 </span> <span class="muComment"># skip tokens should be skipped</span>
<span id="L233" class="LineNr">233 </span> <span class="PreProc">var</span> is-skip?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='tokenize.mu.html#L1000'>skip-token?</a> <a href='tokenize.mu.html#L3'>token</a>
<span id="L234" class="LineNr">234 </span> compare is-skip?, <span class="Constant">0</span>/false
<span id="L235" class="LineNr">235 </span> <span class="PreProc">loop-if-!=</span>
<span id="L236" class="LineNr">236 </span> <span class="muComment"># indent tokens should be skipped</span>
<span id="L237" class="LineNr">237 </span> <span class="PreProc">var</span> is-indent?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='tokenize.mu.html#L1011'>indent-token?</a> <a href='tokenize.mu.html#L3'>token</a>
<span id="L238" class="LineNr">238 </span> compare is-indent?, <span class="Constant">0</span>/false
<span id="L239" class="LineNr">239 </span> <span class="PreProc">loop-if-!=</span>
<span id="L240" class="LineNr">240 </span> <span class="muComment">#</span>
<span id="L241" class="LineNr">241 </span> <a href='../309stream.subx.html#L54'>write-to-stream</a> out, <a href='tokenize.mu.html#L3'>token</a> <span class="muComment"># shallow copy</span>
<span id="L242" class="LineNr">242 </span> <span class="PreProc">loop</span>
<span id="L243" class="LineNr">243 </span> <span class="Delimiter">}</span>
<span id="L244" class="LineNr">244 </span><span class="Delimiter">}</span>
<span id="L245" class="LineNr">245 </span>
<span id="L246" class="LineNr">246 </span><span class="PreProc">fn</span> <span class="muTest"><a href='parenthesize.mu.html#L246'>test-parenthesize</a></span> <span class="Delimiter">{</span>
<span id="L247" class="LineNr">247 </span> <a href='parenthesize.mu.html#L307'>check-parenthesize</a> <span class="Constant">&quot;a b c &quot;</span>, <span class="Constant">&quot;(a b c)&quot;</span>, <span class="Constant">&quot;F - <a href='parenthesize.mu.html#L246'>test-parenthesize</a>/1&quot;</span>
<span id="L248" class="LineNr">248 </span> <a href='parenthesize.mu.html#L307'>check-parenthesize</a> <span class="Constant">&quot;a (b)&quot;</span>, <span class="Constant">&quot;(a (b))&quot;</span>, <span class="Constant">&quot;F - <a href='parenthesize.mu.html#L246'>test-parenthesize</a>/2&quot;</span>
<span id="L249" class="LineNr">249 </span> <a href='parenthesize.mu.html#L307'>check-parenthesize</a> <span class="Constant">&quot;a (b c)&quot;</span>, <span class="Constant">&quot;(a (b c))&quot;</span>, <span class="Constant">&quot;F - <a href='parenthesize.mu.html#L246'>test-parenthesize</a>/3&quot;</span>
<span id="L250" class="LineNr">250 </span> <a href='parenthesize.mu.html#L307'>check-parenthesize</a> <span class="Constant">&quot;a (b c) d&quot;</span>, <span class="Constant">&quot;(a (b c) d)&quot;</span>, <span class="Constant">&quot;F - <a href='parenthesize.mu.html#L246'>test-parenthesize</a>/4&quot;</span>
<span id="L251" class="LineNr">251 </span> <a href='parenthesize.mu.html#L307'>check-parenthesize</a> <span class="Constant">&quot;a b c\nd ef&quot;</span>, <span class="Constant">&quot;(a b c) (d ef)&quot;</span>, <span class="Constant">&quot;F - <a href='parenthesize.mu.html#L246'>test-parenthesize</a>/5-multiple-lines&quot;</span>
<span id="L252" class="LineNr">252 </span> <a href='parenthesize.mu.html#L307'>check-parenthesize</a> <span class="Constant">&quot;a b c\n d ef&quot;</span>, <span class="Constant">&quot;(a b c (d ef))&quot;</span>, <span class="Constant">&quot;F - <a href='parenthesize.mu.html#L246'>test-parenthesize</a>/6-indented&quot;</span>
<span id="L253" class="LineNr">253 </span> <a href='parenthesize.mu.html#L307'>check-parenthesize</a> <span class="Constant">&quot;a b c\n (d ef)&quot;</span>, <span class="Constant">&quot;(a b c (d ef))&quot;</span>, <span class="Constant">&quot;F - <a href='parenthesize.mu.html#L246'>test-parenthesize</a>/7-indented&quot;</span>
<span id="L254" class="LineNr">254 </span> <a href='parenthesize.mu.html#L307'>check-parenthesize</a> <span class="Constant">&quot;a b c\n (d ef)\n g&quot;</span>, <span class="Constant">&quot;(a b c (d ef) g)&quot;</span>, <span class="Constant">&quot;F - <a href='parenthesize.mu.html#L246'>test-parenthesize</a>/8-indented&quot;</span>
<span id="L255" class="LineNr">255 </span> <a href='parenthesize.mu.html#L307'>check-parenthesize</a> <span class="Constant">&quot;a b c\n d e\n f\ny&quot;</span>, <span class="Constant">&quot;(a b c (d e f)) y&quot;</span>, <span class="Constant">&quot;F - <a href='parenthesize.mu.html#L246'>test-parenthesize</a>/9-indented&quot;</span>
<span id="L256" class="LineNr">256 </span> <a href='parenthesize.mu.html#L307'>check-parenthesize</a> <span class="Constant">&quot;#a\na b&quot;</span>, <span class="Constant">&quot;(a b)&quot;</span>, <span class="Constant">&quot;F - <a href='parenthesize.mu.html#L246'>test-parenthesize</a>/10-initial-comment&quot;</span>
<span id="L257" class="LineNr">257 </span><span class="CommentedCode">#? a b c</span>
<span id="L258" class="LineNr">258 </span><span class="CommentedCode">#? d ef</span>
<span id="L259" class="LineNr">259 </span><span class="CommentedCode">#? </span>
<span id="L260" class="LineNr">260 </span><span class="CommentedCode">#? g</span>
<span id="L261" class="LineNr">261 </span><span class="CommentedCode">#? check-parenthesize &quot;a b c\n d ef\n\n g&quot;, &quot;(a b c (d ef) g)&quot;, &quot;F - test-parenthesize/11-comments&quot;</span>
<span id="L262" class="LineNr">262 </span><span class="CommentedCode">#? check-parenthesize &quot;a b c\n d ef\n\n g #abc&quot;, &quot;(a b c (d ef)) g&quot;, &quot;F - test-parenthesize/11-comments&quot;</span>
<span id="L263" class="LineNr">263 </span> <a href='parenthesize.mu.html#L307'>check-parenthesize</a> <span class="Constant">&quot;a b c\n d ef\n\n g #abc&quot;</span>, <span class="Constant">&quot;(a b c (d ef) g)&quot;</span>, <span class="Constant">&quot;F - test-parenthesize/11-comments&quot;</span>
<span id="L264" class="LineNr">264 </span><span class="CommentedCode">#? a b c</span>
<span id="L265" class="LineNr">265 </span><span class="CommentedCode">#? '(d ef)</span>
<span id="L266" class="LineNr">266 </span><span class="CommentedCode">#? </span>
<span id="L267" class="LineNr">267 </span><span class="CommentedCode">#? g #abc</span>
<span id="L268" class="LineNr">268 </span><span class="CommentedCode">#? check-parenthesize &quot;a b c\n '(d ef)\n g #abc&quot;, &quot;(a b c '(d ef) g)&quot;, &quot;F - test-parenthesize/12-quotes-and-comments&quot;</span>
<span id="L269" class="LineNr">269 </span> <a href='parenthesize.mu.html#L307'>check-parenthesize</a> <span class="Constant">&quot;a b c\n '(d ef)\n\n g #abc&quot;</span>, <span class="Constant">&quot;(a b c '(d ef) g)&quot;</span>, <span class="Constant">&quot;F - <a href='parenthesize.mu.html#L246'>test-parenthesize</a>/12-quotes-and-comments&quot;</span>
<span id="L270" class="LineNr">270 </span> <a href='parenthesize.mu.html#L307'>check-parenthesize</a> <span class="Constant">&quot; a b c&quot;</span>, <span class="Constant">&quot;(a b c)&quot;</span>, <span class="Constant">&quot;F - <a href='parenthesize.mu.html#L246'>test-parenthesize</a>/13-initial-indent&quot;</span>
<span id="L271" class="LineNr">271 </span> <a href='parenthesize.mu.html#L307'>check-parenthesize</a> <span class="Constant">&quot; a b c\n 34&quot;</span>, <span class="Constant">&quot;(a b c) 34&quot;</span>, <span class="Constant">&quot;F - <a href='parenthesize.mu.html#L246'>test-parenthesize</a>/14-initial-indent&quot;</span>
<span id="L272" class="LineNr">272 </span> <a href='parenthesize.mu.html#L307'>check-parenthesize</a> <span class="Constant">&quot;def foo\n a b c\n d e\nnewdef&quot;</span>, <span class="Constant">&quot;(def foo (a b c) (d e)) newdef&quot;</span>, <span class="Constant">&quot;F - <a href='parenthesize.mu.html#L246'>test-parenthesize</a>/14&quot;</span>
<span id="L273" class="LineNr">273 </span> <a href='parenthesize.mu.html#L307'>check-parenthesize</a> <span class="Constant">&quot; a a\n a\ny&quot;</span>, <span class="Constant">&quot;(a a a) y&quot;</span>, <span class="Constant">&quot;F - <a href='parenthesize.mu.html#L246'>test-parenthesize</a>/15-group-before-too-much-outdent&quot;</span>
<span id="L274" class="LineNr">274 </span> <a href='parenthesize.mu.html#L307'>check-parenthesize</a> <span class="Constant">&quot;a `(b c)&quot;</span>, <span class="Constant">&quot;(a `(b c))&quot;</span>, <span class="Constant">&quot;F - <a href='parenthesize.mu.html#L246'>test-parenthesize</a>/16-backquote&quot;</span>
<span id="L275" class="LineNr">275 </span> <a href='parenthesize.mu.html#L307'>check-parenthesize</a> <span class="Constant">&quot;'a b c&quot;</span>, <span class="Constant">&quot;('a b c)&quot;</span>, <span class="Constant">&quot;F - <a href='parenthesize.mu.html#L246'>test-parenthesize</a>/17-quote&quot;</span>
<span id="L276" class="LineNr">276 </span> <a href='parenthesize.mu.html#L307'>check-parenthesize</a> <span class="Constant">&quot;,a b c&quot;</span>, <span class="Constant">&quot;(,a b c)&quot;</span>, <span class="Constant">&quot;F - <a href='parenthesize.mu.html#L246'>test-parenthesize</a>/18-unquote&quot;</span>
<span id="L277" class="LineNr">277 </span> <a href='parenthesize.mu.html#L307'>check-parenthesize</a> <span class="Constant">&quot;,@a b c&quot;</span>, <span class="Constant">&quot;(,@a b c)&quot;</span>, <span class="Constant">&quot;F - <a href='parenthesize.mu.html#L246'>test-parenthesize</a>/19-unquote-splice&quot;</span>
<span id="L278" class="LineNr">278 </span> <a href='parenthesize.mu.html#L307'>check-parenthesize</a> <span class="Constant">&quot;a b\n 'c\n ,d\n e&quot;</span>, <span class="Constant">&quot;(a b 'c ,d e)&quot;</span>, <span class="Constant">&quot;F - <a href='parenthesize.mu.html#L246'>test-parenthesize</a>/20-quotes-are-not-words&quot;</span>
<span id="L279" class="LineNr">279 </span> <a href='parenthesize.mu.html#L307'>check-parenthesize</a> <span class="Constant">&quot;def foo\n#a b c\n d e\nnew&quot;</span>, <span class="Constant">&quot;(def foo (d e)) new&quot;</span>, <span class="Constant">&quot;F - <a href='parenthesize.mu.html#L246'>test-parenthesize</a>/21-group-across-comments&quot;</span>
<span id="L280" class="LineNr">280 </span><span class="Delimiter">}</span>
<span id="L281" class="LineNr">281 </span>
<span id="L282" class="LineNr">282 </span><span class="PreProc">fn</span> <span class="muTest"><a href='parenthesize.mu.html#L282'>test-parenthesize-skips-lines-with-initial-parens</a></span> <span class="Delimiter">{</span>
<span id="L283" class="LineNr">283 </span> <a href='parenthesize.mu.html#L307'>check-parenthesize</a> <span class="Constant">&quot;(a b c)&quot;</span>, <span class="Constant">&quot;(a b c)&quot;</span>, <span class="Constant">&quot;F - <a href='parenthesize.mu.html#L282'>test-parenthesize-skips-lines-with-initial-parens</a>/1&quot;</span>
<span id="L284" class="LineNr">284 </span> <a href='parenthesize.mu.html#L307'>check-parenthesize</a> <span class="Constant">&quot;(a (b c))&quot;</span>, <span class="Constant">&quot;(a (b c))&quot;</span>, <span class="Constant">&quot;F - <a href='parenthesize.mu.html#L282'>test-parenthesize-skips-lines-with-initial-parens</a>/2&quot;</span>
<span id="L285" class="LineNr">285 </span> <a href='parenthesize.mu.html#L307'>check-parenthesize</a> <span class="Constant">&quot;(a () b)&quot;</span>, <span class="Constant">&quot;(a () b)&quot;</span>, <span class="Constant">&quot;F - <a href='parenthesize.mu.html#L282'>test-parenthesize-skips-lines-with-initial-parens</a>/3&quot;</span>
<span id="L286" class="LineNr">286 </span> <a href='parenthesize.mu.html#L307'>check-parenthesize</a> <span class="Constant">&quot; (a b c)&quot;</span>, <span class="Constant">&quot;(a b c)&quot;</span>, <span class="Constant">&quot;F - <a href='parenthesize.mu.html#L282'>test-parenthesize-skips-lines-with-initial-parens</a>/initial-indent&quot;</span>
<span id="L287" class="LineNr">287 </span> <a href='parenthesize.mu.html#L307'>check-parenthesize</a> <span class="Constant">&quot;(a b c\n bc\n def\n gh)&quot;</span>, <span class="Constant">&quot;(a b c bc def gh)&quot;</span>, <span class="Constant">&quot;F - <a href='parenthesize.mu.html#L282'>test-parenthesize-skips-lines-with-initial-parens</a>/outdent&quot;</span>
<span id="L288" class="LineNr">288 </span> <a href='parenthesize.mu.html#L307'>check-parenthesize</a> <span class="Constant">&quot;(a b c\n (def gh)\n (i j k)\n lm\n\n\n (no p))&quot;</span>, <span class="Constant">&quot;(a b c (def gh) (i j k) lm (no p))&quot;</span>, <span class="Constant">&quot;F - <a href='parenthesize.mu.html#L282'>test-parenthesize-skips-lines-with-initial-parens</a>/fully-parenthesized&quot;</span>
<span id="L289" class="LineNr">289 </span> <a href='parenthesize.mu.html#L307'>check-parenthesize</a> <span class="Constant">&quot;,(a b c)&quot;</span>, <span class="Constant">&quot;,(a b c)&quot;</span>, <span class="Constant">&quot;F - <a href='parenthesize.mu.html#L282'>test-parenthesize-skips-lines-with-initial-parens</a>/after-unquote&quot;</span>
<span id="L290" class="LineNr">290 </span> <a href='parenthesize.mu.html#L307'>check-parenthesize</a> <span class="Constant">&quot;,@(a b c)&quot;</span>, <span class="Constant">&quot;,@(a b c)&quot;</span>, <span class="Constant">&quot;F - <a href='parenthesize.mu.html#L282'>test-parenthesize-skips-lines-with-initial-parens</a>/after-unquote-splice&quot;</span>
<span id="L291" class="LineNr">291 </span> <a href='parenthesize.mu.html#L307'>check-parenthesize</a> <span class="Constant">&quot;,,(a b c)&quot;</span>, <span class="Constant">&quot;,,(a b c)&quot;</span>, <span class="Constant">&quot;F - <a href='parenthesize.mu.html#L282'>test-parenthesize-skips-lines-with-initial-parens</a>/after-nested-unquote&quot;</span>
<span id="L292" class="LineNr">292 </span> <a href='parenthesize.mu.html#L307'>check-parenthesize</a> <span class="Constant">&quot;(def foo\n #a b c\n d e)\nnew&quot;</span>, <span class="Constant">&quot;(def foo d e) new&quot;</span>, <span class="Constant">&quot;F - test-parenthesize-skips-lines-with-initial-parens/across-comment&quot;</span>
<span id="L293" class="LineNr">293 </span> <a href='parenthesize.mu.html#L307'>check-parenthesize</a> <span class="Constant">&quot;`(def foo\n #a b c\n d e)\nnew&quot;</span>, <span class="Constant">&quot;`(def foo d e) new&quot;</span>, <span class="Constant">&quot;F - test-parenthesize-skips-lines-with-initial-parens/across-comment-after-backquote&quot;</span>
<span id="L294" class="LineNr">294 </span> <a href='parenthesize.mu.html#L307'>check-parenthesize</a> <span class="Constant">&quot; (a b c\n d e)&quot;</span>, <span class="Constant">&quot;(a b c d e)&quot;</span>, <span class="Constant">&quot;F - <a href='parenthesize.mu.html#L282'>test-parenthesize-skips-lines-with-initial-parens</a>/with-indent&quot;</span>
<span id="L295" class="LineNr">295 </span> <a href='parenthesize.mu.html#L307'>check-parenthesize</a> <span class="Constant">&quot;def foo(a (b)\n c d)\n d e\nnew&quot;</span>, <span class="Constant">&quot;(def foo (a (b) c d) (d e)) new&quot;</span>, <span class="Constant">&quot;F - <a href='parenthesize.mu.html#L282'>test-parenthesize-skips-lines-with-initial-parens</a>/inside-arg-lists&quot;</span>
<span id="L296" class="LineNr">296 </span><span class="Delimiter">}</span>
<span id="L297" class="LineNr">297 </span>
<span id="L298" class="LineNr">298 </span><span class="PreProc">fn</span> <span class="muTest"><a href='parenthesize.mu.html#L298'>test-parenthesize-skips-single-word-lines</a></span> <span class="Delimiter">{</span>
<span id="L299" class="LineNr">299 </span> <span class="muComment"># lines usually get grouped with later indented lines</span>
<span id="L300" class="LineNr">300 </span> <a href='parenthesize.mu.html#L307'>check-parenthesize</a> <span class="Constant">&quot;a b\n c&quot;</span>, <span class="Constant">&quot;(a b c)&quot;</span>, <span class="Constant">&quot;F - <a href='parenthesize.mu.html#L298'>test-parenthesize-skips-single-word-lines</a>/0&quot;</span>
<span id="L301" class="LineNr">301 </span> <span class="muComment"># but single-word lines don't</span>
<span id="L302" class="LineNr">302 </span> <a href='parenthesize.mu.html#L307'>check-parenthesize</a> <span class="Constant">&quot;a\n c&quot;</span>, <span class="Constant">&quot;a c&quot;</span>, <span class="Constant">&quot;F - <a href='parenthesize.mu.html#L298'>test-parenthesize-skips-single-word-lines</a>/1&quot;</span>
<span id="L303" class="LineNr">303 </span> <a href='parenthesize.mu.html#L307'>check-parenthesize</a> <span class="Constant">&quot;a&quot;</span>, <span class="Constant">&quot;a&quot;</span>, <span class="Constant">&quot;F - <a href='parenthesize.mu.html#L298'>test-parenthesize-skips-single-word-lines</a>/2&quot;</span>
<span id="L304" class="LineNr">304 </span> <a href='parenthesize.mu.html#L307'>check-parenthesize</a> <span class="Constant">&quot;a \nb\nc&quot;</span>, <span class="Constant">&quot;a b c&quot;</span>, <span class="Constant">&quot;F - <a href='parenthesize.mu.html#L298'>test-parenthesize-skips-single-word-lines</a>/3&quot;</span>
<span id="L305" class="LineNr">305 </span><span class="Delimiter">}</span>
<span id="L306" class="LineNr">306 </span>
<span id="L307" class="LineNr">307 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='parenthesize.mu.html#L307'>check-parenthesize</a></span> actual: (addr array byte), expected: (addr array byte), message: (addr array byte) <span class="Delimiter">{</span>
<span id="L308" class="LineNr">308 </span> <span class="PreProc">var</span> trace-storage: trace
<span id="L309" class="LineNr">309 </span> <span class="PreProc">var</span> trace/<span class="muRegEdx">edx</span>: (addr trace) <span class="Special">&lt;-</span> address trace-storage
<span id="L310" class="LineNr">310 </span> <a href='trace.mu.html#L61'>initialize-trace</a> trace, <span class="Constant">1</span>/only-errors, <span class="Constant">0x10</span>/capacity, <span class="Constant">0</span>/visible
<span id="L311" class="LineNr">311 </span> <span class="muComment">#</span>
<span id="L312" class="LineNr">312 </span> <span class="PreProc">var</span> actual-buffer-storage: <a href='gap-buffer.mu.html#L3'>gap-buffer</a>
<span id="L313" class="LineNr">313 </span> <span class="PreProc">var</span> actual-buffer/<span class="muRegEax">eax</span>: (addr <a href='gap-buffer.mu.html#L3'>gap-buffer</a>) <span class="Special">&lt;-</span> address actual-buffer-storage
<span id="L314" class="LineNr">314 </span> <a href='gap-buffer.mu.html#L53'>initialize-gap-buffer-with</a> actual-buffer, actual
<span id="L315" class="LineNr">315 </span> <span class="PreProc">var</span> actual-tokens-storage: (stream <a href='tokenize.mu.html#L3'>token</a> <span class="Constant">0x40</span>)
<span id="L316" class="LineNr">316 </span> <span class="PreProc">var</span> actual-tokens/<span class="muRegEsi">esi</span>: (addr stream <a href='tokenize.mu.html#L3'>token</a>) <span class="Special">&lt;-</span> address actual-tokens-storage
<span id="L317" class="LineNr">317 </span> <a href='parenthesize.mu.html#L383'>tokenize-and-parenthesize</a> actual-buffer, actual-tokens, trace
<span id="L318" class="LineNr">318 </span> <span class="muComment">#</span>
<span id="L319" class="LineNr">319 </span> <span class="PreProc">var</span> expected-buffer-storage: <a href='gap-buffer.mu.html#L3'>gap-buffer</a>
<span id="L320" class="LineNr">320 </span> <span class="PreProc">var</span> expected-buffer/<span class="muRegEax">eax</span>: (addr <a href='gap-buffer.mu.html#L3'>gap-buffer</a>) <span class="Special">&lt;-</span> address expected-buffer-storage
<span id="L321" class="LineNr">321 </span> <a href='gap-buffer.mu.html#L53'>initialize-gap-buffer-with</a> expected-buffer, expected
<span id="L322" class="LineNr">322 </span> <span class="PreProc">var</span> expected-tokens-storage: (stream <a href='tokenize.mu.html#L3'>token</a> <span class="Constant">0x40</span>)
<span id="L323" class="LineNr">323 </span> <span class="PreProc">var</span> expected-tokens/<span class="muRegEdi">edi</span>: (addr stream <a href='tokenize.mu.html#L3'>token</a>) <span class="Special">&lt;-</span> address expected-tokens-storage
<span id="L324" class="LineNr">324 </span> <a href='parenthesize.mu.html#L396'>tokenize-salient</a> expected-buffer, expected-tokens, trace
<span id="L325" class="LineNr">325 </span> <span class="muComment">#</span>
<span id="L326" class="LineNr">326 </span> <a href='../106stream.subx.html#L59'>rewind-stream</a> actual-tokens
<span id="L327" class="LineNr">327 </span> <a href='parenthesize.mu.html#L330'>check-token-streams-data-equal</a> actual-tokens, expected-tokens, message
<span id="L328" class="LineNr">328 </span><span class="Delimiter">}</span>
<span id="L329" class="LineNr">329 </span>
<span id="L330" class="LineNr">330 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='parenthesize.mu.html#L330'>check-token-streams-data-equal</a></span> actual: (addr stream <a href='tokenize.mu.html#L3'>token</a>), expected: (addr stream <a href='tokenize.mu.html#L3'>token</a>), message: (addr array byte) <span class="Delimiter">{</span>
<span id="L331" class="LineNr">331 </span> <a href='../106stream.subx.html#L59'>rewind-stream</a> actual
<span id="L332" class="LineNr">332 </span> <a href='../106stream.subx.html#L59'>rewind-stream</a> expected
<span id="L333" class="LineNr">333 </span> <span class="Delimiter">{</span>
<span id="L334" class="LineNr">334 </span> <span class="muComment"># loop termination checks</span>
<span id="L335" class="LineNr">335 </span> <span class="PreProc">var</span> actual-done?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='../309stream.subx.html#L6'>stream-empty?</a> actual
<span id="L336" class="LineNr">336 </span> <span class="Delimiter">{</span>
<span id="L337" class="LineNr">337 </span> compare actual-done?, <span class="Constant">0</span>/false
<span id="L338" class="LineNr">338 </span> <span class="PreProc">break-if-=</span>
<span id="L339" class="LineNr">339 </span> <span class="PreProc">var</span> expected-done?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='../309stream.subx.html#L6'>stream-empty?</a> expected
<span id="L340" class="LineNr">340 </span> compare expected-done?, <span class="Constant">0</span>/false
<span id="L341" class="LineNr">341 </span> <span class="Delimiter">{</span>
<span id="L342" class="LineNr">342 </span> <span class="PreProc">break-if-!=</span>
<span id="L343" class="LineNr">343 </span> <span class="muComment"># actual empty, but expected not empty</span>
<span id="L344" class="LineNr">344 </span> <a href='../501draw-text.mu.html#L279'>draw-text-wrapping-right-then-down-from-cursor-over-full-screen</a> <span class="Constant">0</span>/screen, message, <span class="Constant">3</span>/fg=cyan <span class="Constant">0</span>/bg
<span id="L345" class="LineNr">345 </span> <a href='../501draw-text.mu.html#L279'>draw-text-wrapping-right-then-down-from-cursor-over-full-screen</a> <span class="Constant">0</span>/screen, <span class="Constant">&quot;: too short\n&quot;</span>, <span class="Constant">3</span>/fg=cyan <span class="Constant">0</span>/bg
<span id="L346" class="LineNr">346 </span> <a href='../104test.subx.html#L5'>count-test-failure</a>
<span id="L347" class="LineNr">347 </span> <span class="PreProc">return</span>
<span id="L348" class="LineNr">348 </span> <span class="Delimiter">}</span>
<span id="L349" class="LineNr">349 </span> <a href='../501draw-text.mu.html#L279'>draw-text-wrapping-right-then-down-from-cursor-over-full-screen</a> <span class="Constant">0</span>/screen, <span class="Constant">&quot;.&quot;</span>, <span class="Constant">3</span>/fg/cyan, <span class="Constant">0</span>/bg
<span id="L350" class="LineNr">350 </span> <span class="PreProc">return</span>
<span id="L351" class="LineNr">351 </span> <span class="Delimiter">}</span>
<span id="L352" class="LineNr">352 </span> <span class="PreProc">var</span> expected-done?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='../309stream.subx.html#L6'>stream-empty?</a> expected
<span id="L353" class="LineNr">353 </span> compare expected-done?, <span class="Constant">0</span>/false
<span id="L354" class="LineNr">354 </span> <span class="Delimiter">{</span>
<span id="L355" class="LineNr">355 </span> <span class="PreProc">break-if-=</span>
<span id="L356" class="LineNr">356 </span> <span class="muComment"># actual not empty, but expected empty</span>
<span id="L357" class="LineNr">357 </span> <a href='../501draw-text.mu.html#L279'>draw-text-wrapping-right-then-down-from-cursor-over-full-screen</a> <span class="Constant">0</span>/screen, message, <span class="Constant">3</span>/fg=cyan <span class="Constant">0</span>/bg
<span id="L358" class="LineNr">358 </span> <a href='../501draw-text.mu.html#L279'>draw-text-wrapping-right-then-down-from-cursor-over-full-screen</a> <span class="Constant">0</span>/screen, <span class="Constant">&quot;: too long\n&quot;</span>, <span class="Constant">3</span>/fg=cyan <span class="Constant">0</span>/bg
<span id="L359" class="LineNr">359 </span> <a href='../104test.subx.html#L5'>count-test-failure</a>
<span id="L360" class="LineNr">360 </span> <span class="PreProc">return</span>
<span id="L361" class="LineNr">361 </span> <span class="Delimiter">}</span>
<span id="L362" class="LineNr">362 </span> <span class="muComment"># loop body</span>
<span id="L363" class="LineNr">363 </span> <span class="PreProc">var</span> curr-token-storage: <a href='tokenize.mu.html#L3'>token</a>
<span id="L364" class="LineNr">364 </span> <span class="PreProc">var</span> curr-token/<span class="muRegEcx">ecx</span>: (addr <a href='tokenize.mu.html#L3'>token</a>) <span class="Special">&lt;-</span> address curr-token-storage
<span id="L365" class="LineNr">365 </span> <a href='../309stream.subx.html#L104'>read-from-stream</a> actual, curr-token
<span id="L366" class="LineNr">366 </span><span class="CommentedCode">#? dump-token-from-cursor curr-token</span>
<span id="L367" class="LineNr">367 </span> <span class="PreProc">var</span> expected-token-storage: <a href='tokenize.mu.html#L3'>token</a>
<span id="L368" class="LineNr">368 </span> <span class="PreProc">var</span> expected-token/<span class="muRegEdx">edx</span>: (addr <a href='tokenize.mu.html#L3'>token</a>) <span class="Special">&lt;-</span> address expected-token-storage
<span id="L369" class="LineNr">369 </span> <a href='../309stream.subx.html#L104'>read-from-stream</a> expected, expected-token
<span id="L370" class="LineNr">370 </span><span class="CommentedCode">#? dump-token-from-cursor expected-token</span>
<span id="L371" class="LineNr">371 </span> <span class="PreProc">var</span> match?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='tokenize.mu.html#L1052'>tokens-equal?</a> curr-token, expected-token
<span id="L372" class="LineNr">372 </span> compare match?, <span class="Constant">0</span>/false
<span id="L373" class="LineNr">373 </span> <span class="Delimiter">{</span>
<span id="L374" class="LineNr">374 </span> <span class="PreProc">break-if-!=</span>
<span id="L375" class="LineNr">375 </span> <a href='../501draw-text.mu.html#L279'>draw-text-wrapping-right-then-down-from-cursor-over-full-screen</a> <span class="Constant">0</span>/screen, message, <span class="Constant">3</span>/fg=cyan <span class="Constant">0</span>/bg
<span id="L376" class="LineNr">376 </span> <a href='../104test.subx.html#L5'>count-test-failure</a>
<span id="L377" class="LineNr">377 </span> <span class="PreProc">return</span>
<span id="L378" class="LineNr">378 </span> <span class="Delimiter">}</span>
<span id="L379" class="LineNr">379 </span> <span class="PreProc">loop</span>
<span id="L380" class="LineNr">380 </span> <span class="Delimiter">}</span>
<span id="L381" class="LineNr">381 </span><span class="Delimiter">}</span>
<span id="L382" class="LineNr">382 </span>
<span id="L383" class="LineNr">383 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='parenthesize.mu.html#L383'>tokenize-and-parenthesize</a></span> in: (addr <a href='gap-buffer.mu.html#L3'>gap-buffer</a>), out: (addr stream <a href='tokenize.mu.html#L3'>token</a>), trace: (addr trace) <span class="Delimiter">{</span>
<span id="L384" class="LineNr">384 </span> <span class="PreProc">var</span> tokens-storage: (stream <a href='tokenize.mu.html#L3'>token</a> <span class="Constant">0x400</span>)
<span id="L385" class="LineNr">385 </span> <span class="PreProc">var</span> tokens/<span class="muRegEdx">edx</span>: (addr stream <a href='tokenize.mu.html#L3'>token</a>) <span class="Special">&lt;-</span> address tokens-storage
<span id="L386" class="LineNr">386 </span> <a href='tokenize.mu.html#L13'>tokenize</a> in, tokens, trace
<span id="L387" class="LineNr">387 </span> <span class="PreProc">var</span> error?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='trace.mu.html#L94'>has-errors?</a> trace
<span id="L388" class="LineNr">388 </span> compare error?, <span class="Constant">0</span>/false
<span id="L389" class="LineNr">389 </span> <span class="Delimiter">{</span>
<span id="L390" class="LineNr">390 </span> <span class="PreProc">break-if-=</span>
<span id="L391" class="LineNr">391 </span> <span class="PreProc">return</span>
<span id="L392" class="LineNr">392 </span> <span class="Delimiter">}</span>
<span id="L393" class="LineNr">393 </span> <a href='parenthesize.mu.html#L15'>parenthesize</a> tokens, out, trace
<span id="L394" class="LineNr">394 </span><span class="Delimiter">}</span>
<span id="L395" class="LineNr">395 </span>
<span id="L396" class="LineNr">396 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='parenthesize.mu.html#L396'>tokenize-salient</a></span> in: (addr <a href='gap-buffer.mu.html#L3'>gap-buffer</a>), out: (addr stream <a href='tokenize.mu.html#L3'>token</a>), trace: (addr trace) <span class="Delimiter">{</span>
<span id="L397" class="LineNr">397 </span> <span class="PreProc">var</span> tokens-storage: (stream <a href='tokenize.mu.html#L3'>token</a> <span class="Constant">0x400</span>)
<span id="L398" class="LineNr">398 </span> <span class="PreProc">var</span> tokens/<span class="muRegEdx">edx</span>: (addr stream <a href='tokenize.mu.html#L3'>token</a>) <span class="Special">&lt;-</span> address tokens-storage
<span id="L399" class="LineNr">399 </span> <a href='tokenize.mu.html#L13'>tokenize</a> in, tokens, trace
<span id="L400" class="LineNr">400 </span> <span class="PreProc">var</span> error?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='trace.mu.html#L94'>has-errors?</a> trace
<span id="L401" class="LineNr">401 </span> compare error?, <span class="Constant">0</span>/false
<span id="L402" class="LineNr">402 </span> <span class="Delimiter">{</span>
<span id="L403" class="LineNr">403 </span> <span class="PreProc">break-if-=</span>
<span id="L404" class="LineNr">404 </span> <span class="PreProc">return</span>
<span id="L405" class="LineNr">405 </span> <span class="Delimiter">}</span>
<span id="L406" class="LineNr">406 </span> <a href='parenthesize.mu.html#L223'>emit-salient-tokens</a> tokens, out
<span id="L407" class="LineNr">407 </span><span class="Delimiter">}</span>
</pre>
</body>
</html>
<!-- vim: set foldmethod=manual : -->

574
html/shell/parse.mu.html generated
View File

@ -61,7 +61,7 @@ if ('onhashchange' in window) {
<body onload='JumpToLine();'>
<a href='https://github.com/akkartik/mu/blob/main/shell/parse.mu'>https://github.com/akkartik/mu/blob/main/shell/parse.mu</a>
<pre id='vimCodeElement'>
<span id="L1" class="LineNr"> 1 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='parse.mu.html#L1'>parse-input</a></span> tokens: (addr stream <a href='cell.mu.html#L1'>cell</a>), out: (addr handle <a href='cell.mu.html#L1'>cell</a>), trace: (addr trace) <span class="Delimiter">{</span>
<span id="L1" class="LineNr"> 1 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='parse.mu.html#L1'>parse-input</a></span> tokens: (addr stream <a href='tokenize.mu.html#L3'>token</a>), out: (addr handle <a href='cell.mu.html#L1'>cell</a>), trace: (addr trace) <span class="Delimiter">{</span>
<span id="L2" class="LineNr"> 2 </span> <a href='../106stream.subx.html#L59'>rewind-stream</a> tokens
<span id="L3" class="LineNr"> 3 </span> <span class="PreProc">var</span> empty?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='../309stream.subx.html#L6'>stream-empty?</a> tokens
<span id="L4" class="LineNr"> 4 </span> compare empty?, <span class="Constant">0</span>/false
@ -71,8 +71,8 @@ if ('onhashchange' in window) {
<span id="L8" class="LineNr"> 8 </span> <span class="PreProc">return</span>
<span id="L9" class="LineNr"> 9 </span> <span class="Delimiter">}</span>
<span id="L10" class="LineNr"> 10 </span> <span class="PreProc">var</span> close-paren?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> copy <span class="Constant">0</span>/false
<span id="L11" class="LineNr"> 11 </span> <span class="PreProc">var</span> dummy?/<span class="muRegEcx">ecx</span>: boolean <span class="Special">&lt;-</span> copy <span class="Constant">0</span>/false
<span id="L12" class="LineNr"> 12 </span> close-paren?, dummy? <span class="Special">&lt;-</span> <a href='parse.mu.html#L30'>parse-sexpression</a> tokens, out, trace
<span id="L11" class="LineNr"> 11 </span> <span class="PreProc">var</span> dot?/<span class="muRegEcx">ecx</span>: boolean <span class="Special">&lt;-</span> copy <span class="Constant">0</span>/false
<span id="L12" class="LineNr"> 12 </span> close-paren?, dot? <span class="Special">&lt;-</span> <a href='parse.mu.html#L36'>parse-sexpression</a> tokens, out, trace
<span id="L13" class="LineNr"> 13 </span> <span class="Delimiter">{</span>
<span id="L14" class="LineNr"> 14 </span> compare close-paren?, <span class="Constant">0</span>/false
<span id="L15" class="LineNr"> 15 </span> <span class="PreProc">break-if-=</span>
@ -80,295 +80,301 @@ if ('onhashchange' in window) {
<span id="L17" class="LineNr"> 17 </span> <span class="PreProc">return</span>
<span id="L18" class="LineNr"> 18 </span> <span class="Delimiter">}</span>
<span id="L19" class="LineNr"> 19 </span> <span class="Delimiter">{</span>
<span id="L20" class="LineNr"> 20 </span> <span class="PreProc">var</span> empty?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='../309stream.subx.html#L6'>stream-empty?</a> tokens
<span id="L21" class="LineNr"> 21 </span> compare empty?, <span class="Constant">0</span>/false
<span id="L22" class="LineNr"> 22 </span> <span class="PreProc">break-if-!=</span>
<span id="L23" class="LineNr"> 23 </span> <span class="Special"><a href='trace.mu.html#L197'>error</a></span> trace, <span class="Constant">&quot;unexpected tokens at end; only type in a single expression at a time&quot;</span>
<span id="L20" class="LineNr"> 20 </span> compare dot?, <span class="Constant">0</span>/false
<span id="L21" class="LineNr"> 21 </span> <span class="PreProc">break-if-=</span>
<span id="L22" class="LineNr"> 22 </span> <span class="Special"><a href='trace.mu.html#L197'>error</a></span> trace, <span class="Constant">&quot;'.' is not a valid expression&quot;</span>
<span id="L23" class="LineNr"> 23 </span> <span class="PreProc">return</span>
<span id="L24" class="LineNr"> 24 </span> <span class="Delimiter">}</span>
<span id="L25" class="LineNr"> 25 </span><span class="Delimiter">}</span>
<span id="L26" class="LineNr"> 26 </span>
<span id="L27" class="LineNr"> 27 </span><span class="muComment"># return values:</span>
<span id="L28" class="LineNr"> 28 </span><span class="muComment"># unmatched close-paren encountered?</span>
<span id="L29" class="LineNr"> 29 </span><span class="muComment"># dot encountered? (only used internally by recursive calls)</span>
<span id="L30" class="LineNr"> 30 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='parse.mu.html#L30'>parse-sexpression</a></span> tokens: (addr stream <a href='cell.mu.html#L1'>cell</a>), _out: (addr handle <a href='cell.mu.html#L1'>cell</a>), trace: (addr trace)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: boolean, _/<span class="muRegEcx">ecx</span>: boolean <span class="Delimiter">{</span>
<span id="L31" class="LineNr"> 31 </span> <a href='trace.mu.html#L185'>trace-text</a> trace, <span class="Constant">&quot;parse&quot;</span>, <span class="Constant">&quot;parse&quot;</span>
<span id="L32" class="LineNr"> 32 </span> <a href='trace.mu.html#L239'>trace-lower</a> trace
<span id="L33" class="LineNr"> 33 </span> <span class="PreProc">var</span> curr-token-storage: <a href='cell.mu.html#L1'>cell</a>
<span id="L34" class="LineNr"> 34 </span> <span class="PreProc">var</span> curr-token/<span class="muRegEcx">ecx</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address curr-token-storage
<span id="L35" class="LineNr"> 35 </span> <span class="PreProc">var</span> empty?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='../309stream.subx.html#L6'>stream-empty?</a> tokens
<span id="L36" class="LineNr"> 36 </span> compare empty?, <span class="Constant">0</span>/false
<span id="L37" class="LineNr"> 37 </span> <span class="Delimiter">{</span>
<span id="L38" class="LineNr"> 38 </span> <span class="PreProc">break-if-=</span>
<span id="L39" class="LineNr"> 39 </span> <span class="Special"><a href='trace.mu.html#L197'>error</a></span> trace, <span class="Constant">&quot;end of stream; never found a balancing ')'&quot;</span>
<span id="L40" class="LineNr"> 40 </span> <a href='trace.mu.html#L250'>trace-higher</a> trace
<span id="L41" class="LineNr"> 41 </span> <span class="PreProc">return</span> <span class="Constant">1</span>/true, <span class="Constant">0</span>/false
<span id="L42" class="LineNr"> 42 </span> <span class="Delimiter">}</span>
<span id="L43" class="LineNr"> 43 </span> <a href='../309stream.subx.html#L104'>read-from-stream</a> tokens, curr-token
<span id="L44" class="LineNr"> 44 </span> $parse-sexpression:type-check: <span class="Delimiter">{</span>
<span id="L45" class="LineNr"> 45 </span> <span class="muComment"># single quote -&gt; parse as list with a special car</span>
<span id="L46" class="LineNr"> 46 </span> <span class="PreProc">var</span> <a href='tokenize.mu.html#L1011'>quote-token?</a>/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='tokenize.mu.html#L1011'>quote-token?</a> curr-token
<span id="L47" class="LineNr"> 47 </span> compare <a href='tokenize.mu.html#L1011'>quote-token?</a>, <span class="Constant">0</span>/false
<span id="L48" class="LineNr"> 48 </span> <span class="Delimiter">{</span>
<span id="L49" class="LineNr"> 49 </span> <span class="PreProc">break-if-=</span>
<span id="L50" class="LineNr"> 50 </span> <span class="PreProc">var</span> out/<span class="muRegEdi">edi</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> copy _out
<span id="L51" class="LineNr"> 51 </span> <a href='cell.mu.html#L102'>allocate-pair</a> out
<span id="L52" class="LineNr"> 52 </span> <span class="PreProc">var</span> out-addr/<span class="muRegEax">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *out
<span id="L53" class="LineNr"> 53 </span> <span class="PreProc">var</span> left-ah/<span class="muRegEdx">edx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> get out-addr, left
<span id="L54" class="LineNr"> 54 </span> <a href='cell.mu.html#L39'>new-symbol</a> left-ah, <span class="Constant">&quot;'&quot;</span>
<span id="L55" class="LineNr"> 55 </span> <span class="PreProc">var</span> right-ah/<span class="muRegEdx">edx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> get out-addr, right
<span id="L56" class="LineNr"> 56 </span> <span class="PreProc">var</span> close-paren?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> copy <span class="Constant">0</span>/false
<span id="L57" class="LineNr"> 57 </span> <span class="PreProc">var</span> dot?/<span class="muRegEcx">ecx</span>: boolean <span class="Special">&lt;-</span> copy <span class="Constant">0</span>/false
<span id="L58" class="LineNr"> 58 </span> close-paren?, dot? <span class="Special">&lt;-</span> <a href='parse.mu.html#L30'>parse-sexpression</a> tokens, right-ah, trace
<span id="L59" class="LineNr"> 59 </span> <a href='trace.mu.html#L250'>trace-higher</a> trace
<span id="L60" class="LineNr"> 60 </span> <span class="PreProc">return</span> close-paren?, dot?
<span id="L61" class="LineNr"> 61 </span> <span class="Delimiter">}</span>
<span id="L62" class="LineNr"> 62 </span> <span class="muComment"># backquote quote -&gt; parse as list with a special car</span>
<span id="L63" class="LineNr"> 63 </span> <span class="PreProc">var</span> <a href='tokenize.mu.html#L1020'>backquote-token?</a>/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='tokenize.mu.html#L1020'>backquote-token?</a> curr-token
<span id="L64" class="LineNr"> 64 </span> compare <a href='tokenize.mu.html#L1020'>backquote-token?</a>, <span class="Constant">0</span>/false
<span id="L65" class="LineNr"> 65 </span> <span class="Delimiter">{</span>
<span id="L66" class="LineNr"> 66 </span> <span class="PreProc">break-if-=</span>
<span id="L67" class="LineNr"> 67 </span> <span class="PreProc">var</span> out/<span class="muRegEdi">edi</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> copy _out
<span id="L68" class="LineNr"> 68 </span> <a href='cell.mu.html#L102'>allocate-pair</a> out
<span id="L69" class="LineNr"> 69 </span> <span class="PreProc">var</span> out-addr/<span class="muRegEax">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *out
<span id="L70" class="LineNr"> 70 </span> <span class="PreProc">var</span> left-ah/<span class="muRegEdx">edx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> get out-addr, left
<span id="L71" class="LineNr"> 71 </span> <a href='cell.mu.html#L39'>new-symbol</a> left-ah, <span class="Constant">&quot;`&quot;</span>
<span id="L72" class="LineNr"> 72 </span> <span class="PreProc">var</span> right-ah/<span class="muRegEdx">edx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> get out-addr, right
<span id="L73" class="LineNr"> 73 </span> <span class="PreProc">var</span> close-paren?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> copy <span class="Constant">0</span>/false
<span id="L74" class="LineNr"> 74 </span> <span class="PreProc">var</span> dot?/<span class="muRegEcx">ecx</span>: boolean <span class="Special">&lt;-</span> copy <span class="Constant">0</span>/false
<span id="L75" class="LineNr"> 75 </span> close-paren?, dot? <span class="Special">&lt;-</span> <a href='parse.mu.html#L30'>parse-sexpression</a> tokens, right-ah, trace
<span id="L76" class="LineNr"> 76 </span> <a href='trace.mu.html#L250'>trace-higher</a> trace
<span id="L77" class="LineNr"> 77 </span> <span class="PreProc">return</span> close-paren?, dot?
<span id="L78" class="LineNr"> 78 </span> <span class="Delimiter">}</span>
<span id="L79" class="LineNr"> 79 </span> <span class="muComment"># unquote -&gt; parse as list with a special car</span>
<span id="L80" class="LineNr"> 80 </span> <span class="PreProc">var</span> <a href='tokenize.mu.html#L1029'>unquote-token?</a>/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='tokenize.mu.html#L1029'>unquote-token?</a> curr-token
<span id="L81" class="LineNr"> 81 </span> compare <a href='tokenize.mu.html#L1029'>unquote-token?</a>, <span class="Constant">0</span>/false
<span id="L82" class="LineNr"> 82 </span> <span class="Delimiter">{</span>
<span id="L83" class="LineNr"> 83 </span> <span class="PreProc">break-if-=</span>
<span id="L84" class="LineNr"> 84 </span> <span class="PreProc">var</span> out/<span class="muRegEdi">edi</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> copy _out
<span id="L85" class="LineNr"> 85 </span> <a href='cell.mu.html#L102'>allocate-pair</a> out
<span id="L86" class="LineNr"> 86 </span> <span class="PreProc">var</span> out-addr/<span class="muRegEax">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *out
<span id="L87" class="LineNr"> 87 </span> <span class="PreProc">var</span> left-ah/<span class="muRegEdx">edx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> get out-addr, left
<span id="L88" class="LineNr"> 88 </span> <a href='cell.mu.html#L39'>new-symbol</a> left-ah, <span class="Constant">&quot;,&quot;</span>
<span id="L89" class="LineNr"> 89 </span> <span class="PreProc">var</span> right-ah/<span class="muRegEdx">edx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> get out-addr, right
<span id="L90" class="LineNr"> 90 </span> <span class="PreProc">var</span> close-paren?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> copy <span class="Constant">0</span>/false
<span id="L91" class="LineNr"> 91 </span> <span class="PreProc">var</span> dot?/<span class="muRegEcx">ecx</span>: boolean <span class="Special">&lt;-</span> copy <span class="Constant">0</span>/false
<span id="L92" class="LineNr"> 92 </span> close-paren?, dot? <span class="Special">&lt;-</span> <a href='parse.mu.html#L30'>parse-sexpression</a> tokens, right-ah, trace
<span id="L93" class="LineNr"> 93 </span> <a href='trace.mu.html#L250'>trace-higher</a> trace
<span id="L94" class="LineNr"> 94 </span> <span class="PreProc">return</span> close-paren?, dot?
<span id="L95" class="LineNr"> 95 </span> <span class="Delimiter">}</span>
<span id="L96" class="LineNr"> 96 </span> <span class="muComment"># unquote-splice -&gt; parse as list with a special car</span>
<span id="L97" class="LineNr"> 97 </span> <span class="PreProc">var</span> <a href='tokenize.mu.html#L1038'>unquote-splice-token?</a>/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='tokenize.mu.html#L1038'>unquote-splice-token?</a> curr-token
<span id="L98" class="LineNr"> 98 </span> compare <a href='tokenize.mu.html#L1038'>unquote-splice-token?</a>, <span class="Constant">0</span>/false
<span id="L99" class="LineNr"> 99 </span> <span class="Delimiter">{</span>
<span id="L100" class="LineNr">100 </span> <span class="PreProc">break-if-=</span>
<span id="L101" class="LineNr">101 </span> <span class="PreProc">var</span> out/<span class="muRegEdi">edi</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> copy _out
<span id="L102" class="LineNr">102 </span> <a href='cell.mu.html#L102'>allocate-pair</a> out
<span id="L103" class="LineNr">103 </span> <span class="PreProc">var</span> out-addr/<span class="muRegEax">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *out
<span id="L104" class="LineNr">104 </span> <span class="PreProc">var</span> left-ah/<span class="muRegEdx">edx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> get out-addr, left
<span id="L105" class="LineNr">105 </span> <a href='cell.mu.html#L39'>new-symbol</a> left-ah, <span class="Constant">&quot;,@&quot;</span>
<span id="L106" class="LineNr">106 </span> <span class="PreProc">var</span> right-ah/<span class="muRegEdx">edx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> get out-addr, right
<span id="L107" class="LineNr">107 </span> <span class="PreProc">var</span> close-paren?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> copy <span class="Constant">0</span>/false
<span id="L108" class="LineNr">108 </span> <span class="PreProc">var</span> dot?/<span class="muRegEcx">ecx</span>: boolean <span class="Special">&lt;-</span> copy <span class="Constant">0</span>/false
<span id="L109" class="LineNr">109 </span> close-paren?, dot? <span class="Special">&lt;-</span> <a href='parse.mu.html#L30'>parse-sexpression</a> tokens, right-ah, trace
<span id="L110" class="LineNr">110 </span> <a href='trace.mu.html#L250'>trace-higher</a> trace
<span id="L111" class="LineNr">111 </span> <span class="PreProc">return</span> close-paren?, dot?
<span id="L112" class="LineNr">112 </span> <span class="Delimiter">}</span>
<span id="L113" class="LineNr">113 </span> <span class="muComment"># dot -&gt; return</span>
<span id="L114" class="LineNr">114 </span> <span class="PreProc">var</span> dot?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='tokenize.mu.html#L1079'>dot-token?</a> curr-token
<span id="L115" class="LineNr">115 </span> compare dot?, <span class="Constant">0</span>/false
<span id="L116" class="LineNr">116 </span> <span class="Delimiter">{</span>
<span id="L117" class="LineNr">117 </span> <span class="PreProc">break-if-=</span>
<span id="L118" class="LineNr">118 </span> <a href='trace.mu.html#L250'>trace-higher</a> trace
<span id="L119" class="LineNr">119 </span> <span class="PreProc">return</span> <span class="Constant">0</span>/false, <span class="Constant">1</span>/true
<span id="L120" class="LineNr">120 </span> <span class="Delimiter">}</span>
<span id="L121" class="LineNr">121 </span> <span class="muComment"># not bracket -&gt; parse atom</span>
<span id="L122" class="LineNr">122 </span> <span class="PreProc">var</span> <a href='tokenize.mu.html#L994'>bracket-token?</a>/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='tokenize.mu.html#L994'>bracket-token?</a> curr-token
<span id="L123" class="LineNr">123 </span> compare <a href='tokenize.mu.html#L994'>bracket-token?</a>, <span class="Constant">0</span>/false
<span id="L124" class="LineNr">124 </span> <span class="Delimiter">{</span>
<span id="L125" class="LineNr">125 </span> <span class="PreProc">break-if-!=</span>
<span id="L126" class="LineNr">126 </span> <a href='parse.mu.html#L201'>parse-atom</a> curr-token, _out, trace
<span id="L127" class="LineNr">127 </span> <span class="PreProc">break</span> $parse-sexpression:type-check
<span id="L128" class="LineNr">128 </span> <span class="Delimiter">}</span>
<span id="L129" class="LineNr">129 </span> <span class="muComment"># open paren -&gt; parse list</span>
<span id="L130" class="LineNr">130 </span> <span class="PreProc">var</span> open-paren?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='tokenize.mu.html#L1047'>open-paren-token?</a> curr-token
<span id="L131" class="LineNr">131 </span> compare open-paren?, <span class="Constant">0</span>/false
<span id="L132" class="LineNr">132 </span> <span class="Delimiter">{</span>
<span id="L133" class="LineNr">133 </span> <span class="PreProc">break-if-=</span>
<span id="L134" class="LineNr">134 </span> <span class="PreProc">var</span> curr/<span class="muRegEsi">esi</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> copy _out
<span id="L135" class="LineNr">135 </span> <a href='cell.mu.html#L102'>allocate-pair</a> curr
<span id="L136" class="LineNr">136 </span> <span class="PreProc">var</span> curr-addr/<span class="muRegEax">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *curr
<span id="L137" class="LineNr">137 </span> <span class="PreProc">var</span> left/<span class="muRegEdx">edx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> get curr-addr, left
<span id="L138" class="LineNr">138 </span> <span class="Delimiter">{</span>
<span id="L139" class="LineNr">139 </span> <span class="PreProc">var</span> close-paren?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> copy <span class="Constant">0</span>/false
<span id="L140" class="LineNr">140 </span> <span class="PreProc">var</span> dot?/<span class="muRegEcx">ecx</span>: boolean <span class="Special">&lt;-</span> copy <span class="Constant">0</span>/false
<span id="L141" class="LineNr">141 </span> close-paren?, dot? <span class="Special">&lt;-</span> <a href='parse.mu.html#L30'>parse-sexpression</a> tokens, left, trace
<span id="L142" class="LineNr">142 </span> <span class="Delimiter">{</span>
<span id="L143" class="LineNr">143 </span> compare dot?, <span class="Constant">0</span>/false
<span id="L144" class="LineNr">144 </span> <span class="PreProc">break-if-=</span>
<span id="L145" class="LineNr">145 </span> <span class="Special"><a href='trace.mu.html#L197'>error</a></span> trace, <span class="Constant">&quot;'.' cannot be at the start of a list&quot;</span>
<span id="L146" class="LineNr">146 </span> <span class="PreProc">return</span> <span class="Constant">1</span>/true, dot?
<span id="L147" class="LineNr">147 </span> <span class="Delimiter">}</span>
<span id="L148" class="LineNr">148 </span> compare close-paren?, <span class="Constant">0</span>/false
<span id="L149" class="LineNr">149 </span> <span class="PreProc">break-if-!=</span>
<span id="L150" class="LineNr">150 </span> <span class="PreProc">var</span> curr-addr/<span class="muRegEax">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *curr
<span id="L151" class="LineNr">151 </span> curr <span class="Special">&lt;-</span> get curr-addr, right
<span id="L152" class="LineNr">152 </span> <span class="PreProc">var</span> tmp-storage: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L153" class="LineNr">153 </span> <span class="PreProc">var</span> tmp/<span class="muRegEdx">edx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address tmp-storage
<span id="L154" class="LineNr">154 </span> $parse-sexpression:list-loop: <span class="Delimiter">{</span>
<span id="L155" class="LineNr">155 </span> <span class="PreProc">var</span> close-paren?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> copy <span class="Constant">0</span>/false
<span id="L156" class="LineNr">156 </span> <span class="PreProc">var</span> dot?/<span class="muRegEcx">ecx</span>: boolean <span class="Special">&lt;-</span> copy <span class="Constant">0</span>/false
<span id="L157" class="LineNr">157 </span> close-paren?, dot? <span class="Special">&lt;-</span> <a href='parse.mu.html#L30'>parse-sexpression</a> tokens, tmp, trace
<span id="L158" class="LineNr">158 </span> <span class="muComment"># '.' -&gt; clean up right here and return</span>
<span id="L159" class="LineNr">159 </span> compare dot?, <span class="Constant">0</span>/false
<span id="L160" class="LineNr">160 </span> <span class="Delimiter">{</span>
<span id="L161" class="LineNr">161 </span> <span class="PreProc">break-if-=</span>
<span id="L162" class="LineNr">162 </span> <a href='parse.mu.html#L275'>parse-dot-tail</a> tokens, curr, trace
<span id="L163" class="LineNr">163 </span> <span class="PreProc">return</span> <span class="Constant">0</span>/false, <span class="Constant">0</span>/false
<span id="L164" class="LineNr">164 </span> <span class="Delimiter">}</span>
<span id="L165" class="LineNr">165 </span> <a href='cell.mu.html#L102'>allocate-pair</a> curr
<span id="L166" class="LineNr">166 </span> <span class="muComment"># ')' -&gt; return</span>
<span id="L167" class="LineNr">167 </span> compare close-paren?, <span class="Constant">0</span>/false
<span id="L168" class="LineNr">168 </span> <span class="PreProc">break-if-!=</span>
<span id="L169" class="LineNr">169 </span> <span class="PreProc">var</span> curr-addr/<span class="muRegEax">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *curr
<span id="L170" class="LineNr">170 </span> <span class="PreProc">var</span> left/<span class="muRegEcx">ecx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> get curr-addr, left
<span id="L171" class="LineNr">171 </span> copy-object tmp, left
<span id="L172" class="LineNr">172 </span> <span class="muComment">#</span>
<span id="L173" class="LineNr">173 </span> curr <span class="Special">&lt;-</span> get curr-addr, right
<span id="L174" class="LineNr">174 </span> <span class="PreProc">loop</span>
<span id="L175" class="LineNr">175 </span> <span class="Delimiter">}</span>
<span id="L176" class="LineNr">176 </span> <span class="Delimiter">}</span>
<span id="L177" class="LineNr">177 </span> <span class="PreProc">break</span> $parse-sexpression:type-check
<span id="L178" class="LineNr">178 </span> <span class="Delimiter">}</span>
<span id="L179" class="LineNr">179 </span> <span class="muComment"># close paren -&gt; return</span>
<span id="L180" class="LineNr">180 </span> <span class="PreProc">var</span> close-paren?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='tokenize.mu.html#L1063'>close-paren-token?</a> curr-token
<span id="L181" class="LineNr">181 </span> compare close-paren?, <span class="Constant">0</span>/false
<span id="L182" class="LineNr">182 </span> <span class="Delimiter">{</span>
<span id="L183" class="LineNr">183 </span> <span class="PreProc">break-if-=</span>
<span id="L184" class="LineNr">184 </span> <a href='trace.mu.html#L250'>trace-higher</a> trace
<span id="L185" class="LineNr">185 </span> <span class="PreProc">return</span> <span class="Constant">1</span>/true, <span class="Constant">0</span>/false
<span id="L186" class="LineNr">186 </span> <span class="Delimiter">}</span>
<span id="L187" class="LineNr">187 </span> <span class="muComment"># otherwise abort</span>
<span id="L188" class="LineNr">188 </span> <span class="PreProc">var</span> stream-storage: (stream byte <span class="Constant">0x400</span>)
<span id="L189" class="LineNr">189 </span> <span class="PreProc">var</span> stream/<span class="muRegEdx">edx</span>: (addr stream byte) <span class="Special">&lt;-</span> address stream-storage
<span id="L190" class="LineNr">190 </span> <a href='../108write.subx.html#L11'>write</a> stream, <span class="Constant">&quot;unexpected token &quot;</span>
<span id="L191" class="LineNr">191 </span> <span class="PreProc">var</span> curr-token-data-ah/<span class="muRegEax">eax</span>: (addr handle stream byte) <span class="Special">&lt;-</span> get curr-token, text-data
<span id="L192" class="LineNr">192 </span> <span class="PreProc">var</span> curr-token-data/<span class="muRegEax">eax</span>: (addr stream byte) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *curr-token-data-ah
<span id="L193" class="LineNr">193 </span> <a href='../106stream.subx.html#L59'>rewind-stream</a> curr-token-data
<span id="L194" class="LineNr">194 </span> <a href='../113write-stream.subx.html#L8'>write-stream</a> stream, curr-token-data
<span id="L195" class="LineNr">195 </span> <span class="Special"><a href='trace.mu.html#L211'>error-stream</a></span> trace, stream
<span id="L196" class="LineNr">196 </span> <span class="Delimiter">}</span>
<span id="L197" class="LineNr">197 </span> <a href='trace.mu.html#L250'>trace-higher</a> trace
<span id="L198" class="LineNr">198 </span> <span class="PreProc">return</span> <span class="Constant">0</span>/false, <span class="Constant">0</span>/false
<span id="L199" class="LineNr">199 </span><span class="Delimiter">}</span>
<span id="L200" class="LineNr">200 </span>
<span id="L201" class="LineNr">201 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='parse.mu.html#L201'>parse-atom</a></span> _curr-token: (addr <a href='cell.mu.html#L1'>cell</a>), _out: (addr handle <a href='cell.mu.html#L1'>cell</a>), trace: (addr trace) <span class="Delimiter">{</span>
<span id="L202" class="LineNr">202 </span> <a href='trace.mu.html#L185'>trace-text</a> trace, <span class="Constant">&quot;parse&quot;</span>, <span class="Constant">&quot;parse atom&quot;</span>
<span id="L203" class="LineNr">203 </span> <span class="PreProc">var</span> curr-token/<span class="muRegEcx">ecx</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> copy _curr-token
<span id="L204" class="LineNr">204 </span> <span class="PreProc">var</span> curr-token-data-ah/<span class="muRegEax">eax</span>: (addr handle stream byte) <span class="Special">&lt;-</span> get curr-token, text-data
<span id="L205" class="LineNr">205 </span> <span class="PreProc">var</span> _curr-token-data/<span class="muRegEax">eax</span>: (addr stream byte) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *curr-token-data-ah
<span id="L206" class="LineNr">206 </span> <span class="PreProc">var</span> curr-token-data/<span class="muRegEsi">esi</span>: (addr stream byte) <span class="Special">&lt;-</span> copy _curr-token-data
<span id="L207" class="LineNr">207 </span> trace trace, <span class="Constant">&quot;parse&quot;</span>, curr-token-data
<span id="L208" class="LineNr">208 </span> <span class="muComment"># number</span>
<span id="L209" class="LineNr">209 </span> <span class="PreProc">var</span> <a href='tokenize.mu.html#L977'>number-token?</a>/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='tokenize.mu.html#L977'>number-token?</a> curr-token
<span id="L210" class="LineNr">210 </span> compare <a href='tokenize.mu.html#L977'>number-token?</a>, <span class="Constant">0</span>/false
<span id="L211" class="LineNr">211 </span> <span class="Delimiter">{</span>
<span id="L212" class="LineNr">212 </span> <span class="PreProc">break-if-=</span>
<span id="L213" class="LineNr">213 </span> <a href='../106stream.subx.html#L59'>rewind-stream</a> curr-token-data
<span id="L214" class="LineNr">214 </span> <span class="PreProc">var</span> _val/<span class="muRegEax">eax</span>: int <span class="Special">&lt;-</span> <a href='../311decimal-int.subx.html#L48'>parse-decimal-int-from-stream</a> curr-token-data
<span id="L215" class="LineNr">215 </span> <span class="PreProc">var</span> val/<span class="muRegEcx">ecx</span>: int <span class="Special">&lt;-</span> copy _val
<span id="L216" class="LineNr">216 </span> <span class="PreProc">var</span> val-float/<span class="Constant">xmm0</span>: float <span class="Special">&lt;-</span> convert val
<span id="L217" class="LineNr">217 </span> <a href='cell.mu.html#L68'>allocate-number</a> _out
<span id="L218" class="LineNr">218 </span> <span class="PreProc">var</span> out/<span class="muRegEax">eax</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> copy _out
<span id="L219" class="LineNr">219 </span> <span class="PreProc">var</span> out-addr/<span class="muRegEax">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *out
<span id="L220" class="LineNr">220 </span> <span class="PreProc">var</span> dest/<span class="muRegEdi">edi</span>: (addr float) <span class="Special">&lt;-</span> get out-addr, number-data
<span id="L221" class="LineNr">221 </span> copy-to *dest, val-float
<span id="L222" class="LineNr">222 </span> <span class="Delimiter">{</span>
<span id="L223" class="LineNr">223 </span> <span class="Delimiter">{</span>
<span id="L224" class="LineNr">224 </span> <span class="PreProc">var</span> <a href='trace.mu.html#L123'>should-trace?</a>/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='trace.mu.html#L123'>should-trace?</a> trace
<span id="L225" class="LineNr">225 </span> compare <a href='trace.mu.html#L123'>should-trace?</a>, <span class="Constant">0</span>/false
<span id="L226" class="LineNr">226 </span> <span class="Delimiter">}</span>
<span id="L227" class="LineNr">227 </span> <span class="PreProc">break-if-=</span>
<span id="L228" class="LineNr">228 </span> <span class="PreProc">var</span> stream-storage: (stream byte <span class="Constant">0x400</span>)
<span id="L229" class="LineNr">229 </span> <span class="PreProc">var</span> stream/<span class="muRegEcx">ecx</span>: (addr stream byte) <span class="Special">&lt;-</span> address stream-storage
<span id="L230" class="LineNr">230 </span> <a href='../108write.subx.html#L11'>write</a> stream, <span class="Constant">&quot;=&gt; number &quot;</span>
<span id="L231" class="LineNr">231 </span> <span class="PreProc">var</span> nested-trace-storage: trace
<span id="L232" class="LineNr">232 </span> <span class="PreProc">var</span> nested-trace/<span class="muRegEdi">edi</span>: (addr trace) <span class="Special">&lt;-</span> address nested-trace-storage
<span id="L233" class="LineNr">233 </span> <a href='trace.mu.html#L61'>initialize-trace</a> nested-trace, <span class="Constant">1</span>/only-errors, <span class="Constant">0x10</span>/capacity, <span class="Constant">0</span>/visible
<span id="L234" class="LineNr">234 </span> <a href='print.mu.html#L209'>print-number</a> out-addr, stream, nested-trace
<span id="L235" class="LineNr">235 </span> trace trace, <span class="Constant">&quot;parse&quot;</span>, stream
<span id="L236" class="LineNr">236 </span> <span class="Delimiter">}</span>
<span id="L237" class="LineNr">237 </span> <span class="PreProc">return</span>
<span id="L238" class="LineNr">238 </span> <span class="Delimiter">}</span>
<span id="L239" class="LineNr">239 </span> <span class="muComment"># default: copy either to a symbol or a stream</span>
<span id="L240" class="LineNr">240 </span> <span class="muComment"># stream token -&gt; literal</span>
<span id="L241" class="LineNr">241 </span> <span class="PreProc">var</span> <a href='tokenize.mu.html#L1104'>stream-token?</a>/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='tokenize.mu.html#L1104'>stream-token?</a> curr-token
<span id="L242" class="LineNr">242 </span> compare <a href='tokenize.mu.html#L1104'>stream-token?</a>, <span class="Constant">0</span>/false
<span id="L243" class="LineNr">243 </span> <span class="Delimiter">{</span>
<span id="L244" class="LineNr">244 </span> <span class="PreProc">break-if-=</span>
<span id="L245" class="LineNr">245 </span> <a href='cell.mu.html#L58'>allocate-stream</a> _out
<span id="L246" class="LineNr">246 </span> <span class="Delimiter">}</span>
<span id="L247" class="LineNr">247 </span> compare <a href='tokenize.mu.html#L1104'>stream-token?</a>, <span class="Constant">0</span>/false
<span id="L248" class="LineNr">248 </span> <span class="Delimiter">{</span>
<span id="L249" class="LineNr">249 </span> <span class="PreProc">break-if-!=</span>
<span id="L250" class="LineNr">250 </span> <a href='cell.mu.html#L21'>allocate-symbol</a> _out
<span id="L251" class="LineNr">251 </span> <span class="Delimiter">}</span>
<span id="L252" class="LineNr">252 </span> <span class="muComment"># copy token data</span>
<span id="L253" class="LineNr">253 </span> <span class="PreProc">var</span> out/<span class="muRegEax">eax</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> copy _out
<span id="L254" class="LineNr">254 </span> <span class="PreProc">var</span> out-addr/<span class="muRegEax">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *out
<span id="L255" class="LineNr">255 </span> <span class="PreProc">var</span> curr-token-data-ah/<span class="muRegEcx">ecx</span>: (addr handle stream byte) <span class="Special">&lt;-</span> get curr-token, text-data
<span id="L256" class="LineNr">256 </span> <span class="PreProc">var</span> dest-ah/<span class="muRegEdx">edx</span>: (addr handle stream byte) <span class="Special">&lt;-</span> get out-addr, text-data
<span id="L257" class="LineNr">257 </span> copy-object curr-token-data-ah, dest-ah
<span id="L258" class="LineNr">258 </span> <span class="Delimiter">{</span>
<span id="L259" class="LineNr">259 </span> <span class="Delimiter">{</span>
<span id="L260" class="LineNr">260 </span> <span class="PreProc">var</span> <a href='trace.mu.html#L123'>should-trace?</a>/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='trace.mu.html#L123'>should-trace?</a> trace
<span id="L261" class="LineNr">261 </span> compare <a href='trace.mu.html#L123'>should-trace?</a>, <span class="Constant">0</span>/false
<span id="L262" class="LineNr">262 </span> <span class="Delimiter">}</span>
<span id="L263" class="LineNr">263 </span> <span class="PreProc">break-if-=</span>
<span id="L264" class="LineNr">264 </span> <span class="PreProc">var</span> stream-storage: (stream byte <span class="Constant">0x400</span>)
<span id="L265" class="LineNr">265 </span> <span class="PreProc">var</span> stream/<span class="muRegEcx">ecx</span>: (addr stream byte) <span class="Special">&lt;-</span> address stream-storage
<span id="L266" class="LineNr">266 </span> <a href='../108write.subx.html#L11'>write</a> stream, <span class="Constant">&quot;=&gt; symbol &quot;</span>
<span id="L267" class="LineNr">267 </span> <span class="PreProc">var</span> nested-trace-storage: trace
<span id="L268" class="LineNr">268 </span> <span class="PreProc">var</span> nested-trace/<span class="muRegEdi">edi</span>: (addr trace) <span class="Special">&lt;-</span> address nested-trace-storage
<span id="L269" class="LineNr">269 </span> <a href='trace.mu.html#L61'>initialize-trace</a> nested-trace, <span class="Constant">1</span>/only-errors, <span class="Constant">0x10</span>/capacity, <span class="Constant">0</span>/visible
<span id="L270" class="LineNr">270 </span> <a href='print.mu.html#L146'>print-symbol</a> out-addr, stream, nested-trace
<span id="L271" class="LineNr">271 </span> trace trace, <span class="Constant">&quot;parse&quot;</span>, stream
<span id="L272" class="LineNr">272 </span> <span class="Delimiter">}</span>
<span id="L273" class="LineNr">273 </span><span class="Delimiter">}</span>
<span id="L274" class="LineNr">274 </span>
<span id="L275" class="LineNr">275 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='parse.mu.html#L275'>parse-dot-tail</a></span> tokens: (addr stream <a href='cell.mu.html#L1'>cell</a>), _out: (addr handle <a href='cell.mu.html#L1'>cell</a>), trace: (addr trace) <span class="Delimiter">{</span>
<span id="L276" class="LineNr">276 </span> <span class="PreProc">var</span> out/<span class="muRegEdi">edi</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> copy _out
<span id="L277" class="LineNr">277 </span> <span class="PreProc">var</span> close-paren?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> copy <span class="Constant">0</span>/false
<span id="L278" class="LineNr">278 </span> <span class="PreProc">var</span> dot?/<span class="muRegEcx">ecx</span>: boolean <span class="Special">&lt;-</span> copy <span class="Constant">0</span>/false
<span id="L279" class="LineNr">279 </span> close-paren?, dot? <span class="Special">&lt;-</span> <a href='parse.mu.html#L30'>parse-sexpression</a> tokens, out, trace
<span id="L280" class="LineNr">280 </span> compare close-paren?, <span class="Constant">0</span>/false
<span id="L281" class="LineNr">281 </span> <span class="Delimiter">{</span>
<span id="L282" class="LineNr">282 </span> <span class="PreProc">break-if-=</span>
<span id="L283" class="LineNr">283 </span> <span class="Special"><a href='trace.mu.html#L197'>error</a></span> trace, <span class="Constant">&quot;'. )' makes no sense&quot;</span>
<span id="L284" class="LineNr">284 </span> <span class="PreProc">return</span>
<span id="L285" class="LineNr">285 </span> <span class="Delimiter">}</span>
<span id="L286" class="LineNr">286 </span> compare dot?, <span class="Constant">0</span>/false
<span id="L25" class="LineNr"> 25 </span> <span class="Delimiter">{</span>
<span id="L26" class="LineNr"> 26 </span> <span class="PreProc">var</span> empty?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='../309stream.subx.html#L6'>stream-empty?</a> tokens
<span id="L27" class="LineNr"> 27 </span> compare empty?, <span class="Constant">0</span>/false
<span id="L28" class="LineNr"> 28 </span> <span class="PreProc">break-if-!=</span>
<span id="L29" class="LineNr"> 29 </span> <span class="Special"><a href='trace.mu.html#L197'>error</a></span> trace, <span class="Constant">&quot;unexpected tokens at end; only type in a single expression at a time&quot;</span>
<span id="L30" class="LineNr"> 30 </span> <span class="Delimiter">}</span>
<span id="L31" class="LineNr"> 31 </span><span class="Delimiter">}</span>
<span id="L32" class="LineNr"> 32 </span>
<span id="L33" class="LineNr"> 33 </span><span class="muComment"># return values:</span>
<span id="L34" class="LineNr"> 34 </span><span class="muComment"># unmatched close-paren encountered?</span>
<span id="L35" class="LineNr"> 35 </span><span class="muComment"># dot encountered? (only used internally by recursive calls)</span>
<span id="L36" class="LineNr"> 36 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='parse.mu.html#L36'>parse-sexpression</a></span> tokens: (addr stream <a href='tokenize.mu.html#L3'>token</a>), _out: (addr handle <a href='cell.mu.html#L1'>cell</a>), trace: (addr trace)<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: boolean, _/<span class="muRegEcx">ecx</span>: boolean <span class="Delimiter">{</span>
<span id="L37" class="LineNr"> 37 </span> <a href='trace.mu.html#L185'>trace-text</a> trace, <span class="Constant">&quot;parse&quot;</span>, <span class="Constant">&quot;parse&quot;</span>
<span id="L38" class="LineNr"> 38 </span> <a href='trace.mu.html#L239'>trace-lower</a> trace
<span id="L39" class="LineNr"> 39 </span> <span class="PreProc">var</span> curr-token-storage: <a href='tokenize.mu.html#L3'>token</a>
<span id="L40" class="LineNr"> 40 </span> <span class="PreProc">var</span> curr-token/<span class="muRegEcx">ecx</span>: (addr <a href='tokenize.mu.html#L3'>token</a>) <span class="Special">&lt;-</span> address curr-token-storage
<span id="L41" class="LineNr"> 41 </span> <span class="PreProc">var</span> empty?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='../309stream.subx.html#L6'>stream-empty?</a> tokens
<span id="L42" class="LineNr"> 42 </span> compare empty?, <span class="Constant">0</span>/false
<span id="L43" class="LineNr"> 43 </span> <span class="Delimiter">{</span>
<span id="L44" class="LineNr"> 44 </span> <span class="PreProc">break-if-=</span>
<span id="L45" class="LineNr"> 45 </span> <span class="Special"><a href='trace.mu.html#L197'>error</a></span> trace, <span class="Constant">&quot;end of stream; never found a balancing ')'&quot;</span>
<span id="L46" class="LineNr"> 46 </span> <a href='trace.mu.html#L250'>trace-higher</a> trace
<span id="L47" class="LineNr"> 47 </span> <span class="PreProc">return</span> <span class="Constant">1</span>/true, <span class="Constant">0</span>/false
<span id="L48" class="LineNr"> 48 </span> <span class="Delimiter">}</span>
<span id="L49" class="LineNr"> 49 </span> <a href='../309stream.subx.html#L104'>read-from-stream</a> tokens, curr-token
<span id="L50" class="LineNr"> 50 </span> $parse-sexpression:type-check: <span class="Delimiter">{</span>
<span id="L51" class="LineNr"> 51 </span> <span class="muComment"># single quote -&gt; parse as list with a special car</span>
<span id="L52" class="LineNr"> 52 </span> <span class="PreProc">var</span> <a href='tokenize.mu.html#L895'>quote-token?</a>/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='tokenize.mu.html#L895'>quote-token?</a> curr-token
<span id="L53" class="LineNr"> 53 </span> compare <a href='tokenize.mu.html#L895'>quote-token?</a>, <span class="Constant">0</span>/false
<span id="L54" class="LineNr"> 54 </span> <span class="Delimiter">{</span>
<span id="L55" class="LineNr"> 55 </span> <span class="PreProc">break-if-=</span>
<span id="L56" class="LineNr"> 56 </span> <span class="PreProc">var</span> out/<span class="muRegEdi">edi</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> copy _out
<span id="L57" class="LineNr"> 57 </span> <a href='cell.mu.html#L102'>allocate-pair</a> out
<span id="L58" class="LineNr"> 58 </span> <span class="PreProc">var</span> out-addr/<span class="muRegEax">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *out
<span id="L59" class="LineNr"> 59 </span> <span class="PreProc">var</span> left-ah/<span class="muRegEdx">edx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> get out-addr, left
<span id="L60" class="LineNr"> 60 </span> <a href='cell.mu.html#L39'>new-symbol</a> left-ah, <span class="Constant">&quot;'&quot;</span>
<span id="L61" class="LineNr"> 61 </span> <span class="PreProc">var</span> right-ah/<span class="muRegEdx">edx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> get out-addr, right
<span id="L62" class="LineNr"> 62 </span> <span class="PreProc">var</span> close-paren?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> copy <span class="Constant">0</span>/false
<span id="L63" class="LineNr"> 63 </span> <span class="PreProc">var</span> dot?/<span class="muRegEcx">ecx</span>: boolean <span class="Special">&lt;-</span> copy <span class="Constant">0</span>/false
<span id="L64" class="LineNr"> 64 </span> close-paren?, dot? <span class="Special">&lt;-</span> <a href='parse.mu.html#L36'>parse-sexpression</a> tokens, right-ah, trace
<span id="L65" class="LineNr"> 65 </span> <a href='trace.mu.html#L250'>trace-higher</a> trace
<span id="L66" class="LineNr"> 66 </span> <span class="PreProc">return</span> close-paren?, dot?
<span id="L67" class="LineNr"> 67 </span> <span class="Delimiter">}</span>
<span id="L68" class="LineNr"> 68 </span> <span class="muComment"># backquote quote -&gt; parse as list with a special car</span>
<span id="L69" class="LineNr"> 69 </span> <span class="PreProc">var</span> <a href='tokenize.mu.html#L904'>backquote-token?</a>/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='tokenize.mu.html#L904'>backquote-token?</a> curr-token
<span id="L70" class="LineNr"> 70 </span> compare <a href='tokenize.mu.html#L904'>backquote-token?</a>, <span class="Constant">0</span>/false
<span id="L71" class="LineNr"> 71 </span> <span class="Delimiter">{</span>
<span id="L72" class="LineNr"> 72 </span> <span class="PreProc">break-if-=</span>
<span id="L73" class="LineNr"> 73 </span> <span class="PreProc">var</span> out/<span class="muRegEdi">edi</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> copy _out
<span id="L74" class="LineNr"> 74 </span> <a href='cell.mu.html#L102'>allocate-pair</a> out
<span id="L75" class="LineNr"> 75 </span> <span class="PreProc">var</span> out-addr/<span class="muRegEax">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *out
<span id="L76" class="LineNr"> 76 </span> <span class="PreProc">var</span> left-ah/<span class="muRegEdx">edx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> get out-addr, left
<span id="L77" class="LineNr"> 77 </span> <a href='cell.mu.html#L39'>new-symbol</a> left-ah, <span class="Constant">&quot;`&quot;</span>
<span id="L78" class="LineNr"> 78 </span> <span class="PreProc">var</span> right-ah/<span class="muRegEdx">edx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> get out-addr, right
<span id="L79" class="LineNr"> 79 </span> <span class="PreProc">var</span> close-paren?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> copy <span class="Constant">0</span>/false
<span id="L80" class="LineNr"> 80 </span> <span class="PreProc">var</span> dot?/<span class="muRegEcx">ecx</span>: boolean <span class="Special">&lt;-</span> copy <span class="Constant">0</span>/false
<span id="L81" class="LineNr"> 81 </span> close-paren?, dot? <span class="Special">&lt;-</span> <a href='parse.mu.html#L36'>parse-sexpression</a> tokens, right-ah, trace
<span id="L82" class="LineNr"> 82 </span> <a href='trace.mu.html#L250'>trace-higher</a> trace
<span id="L83" class="LineNr"> 83 </span> <span class="PreProc">return</span> close-paren?, dot?
<span id="L84" class="LineNr"> 84 </span> <span class="Delimiter">}</span>
<span id="L85" class="LineNr"> 85 </span> <span class="muComment"># unquote -&gt; parse as list with a special car</span>
<span id="L86" class="LineNr"> 86 </span> <span class="PreProc">var</span> <a href='tokenize.mu.html#L913'>unquote-token?</a>/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='tokenize.mu.html#L913'>unquote-token?</a> curr-token
<span id="L87" class="LineNr"> 87 </span> compare <a href='tokenize.mu.html#L913'>unquote-token?</a>, <span class="Constant">0</span>/false
<span id="L88" class="LineNr"> 88 </span> <span class="Delimiter">{</span>
<span id="L89" class="LineNr"> 89 </span> <span class="PreProc">break-if-=</span>
<span id="L90" class="LineNr"> 90 </span> <span class="PreProc">var</span> out/<span class="muRegEdi">edi</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> copy _out
<span id="L91" class="LineNr"> 91 </span> <a href='cell.mu.html#L102'>allocate-pair</a> out
<span id="L92" class="LineNr"> 92 </span> <span class="PreProc">var</span> out-addr/<span class="muRegEax">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *out
<span id="L93" class="LineNr"> 93 </span> <span class="PreProc">var</span> left-ah/<span class="muRegEdx">edx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> get out-addr, left
<span id="L94" class="LineNr"> 94 </span> <a href='cell.mu.html#L39'>new-symbol</a> left-ah, <span class="Constant">&quot;,&quot;</span>
<span id="L95" class="LineNr"> 95 </span> <span class="PreProc">var</span> right-ah/<span class="muRegEdx">edx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> get out-addr, right
<span id="L96" class="LineNr"> 96 </span> <span class="PreProc">var</span> close-paren?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> copy <span class="Constant">0</span>/false
<span id="L97" class="LineNr"> 97 </span> <span class="PreProc">var</span> dot?/<span class="muRegEcx">ecx</span>: boolean <span class="Special">&lt;-</span> copy <span class="Constant">0</span>/false
<span id="L98" class="LineNr"> 98 </span> close-paren?, dot? <span class="Special">&lt;-</span> <a href='parse.mu.html#L36'>parse-sexpression</a> tokens, right-ah, trace
<span id="L99" class="LineNr"> 99 </span> <a href='trace.mu.html#L250'>trace-higher</a> trace
<span id="L100" class="LineNr">100 </span> <span class="PreProc">return</span> close-paren?, dot?
<span id="L101" class="LineNr">101 </span> <span class="Delimiter">}</span>
<span id="L102" class="LineNr">102 </span> <span class="muComment"># unquote-splice -&gt; parse as list with a special car</span>
<span id="L103" class="LineNr">103 </span> <span class="PreProc">var</span> <a href='tokenize.mu.html#L922'>unquote-splice-token?</a>/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='tokenize.mu.html#L922'>unquote-splice-token?</a> curr-token
<span id="L104" class="LineNr">104 </span> compare <a href='tokenize.mu.html#L922'>unquote-splice-token?</a>, <span class="Constant">0</span>/false
<span id="L105" class="LineNr">105 </span> <span class="Delimiter">{</span>
<span id="L106" class="LineNr">106 </span> <span class="PreProc">break-if-=</span>
<span id="L107" class="LineNr">107 </span> <span class="PreProc">var</span> out/<span class="muRegEdi">edi</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> copy _out
<span id="L108" class="LineNr">108 </span> <a href='cell.mu.html#L102'>allocate-pair</a> out
<span id="L109" class="LineNr">109 </span> <span class="PreProc">var</span> out-addr/<span class="muRegEax">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *out
<span id="L110" class="LineNr">110 </span> <span class="PreProc">var</span> left-ah/<span class="muRegEdx">edx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> get out-addr, left
<span id="L111" class="LineNr">111 </span> <a href='cell.mu.html#L39'>new-symbol</a> left-ah, <span class="Constant">&quot;,@&quot;</span>
<span id="L112" class="LineNr">112 </span> <span class="PreProc">var</span> right-ah/<span class="muRegEdx">edx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> get out-addr, right
<span id="L113" class="LineNr">113 </span> <span class="PreProc">var</span> close-paren?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> copy <span class="Constant">0</span>/false
<span id="L114" class="LineNr">114 </span> <span class="PreProc">var</span> dot?/<span class="muRegEcx">ecx</span>: boolean <span class="Special">&lt;-</span> copy <span class="Constant">0</span>/false
<span id="L115" class="LineNr">115 </span> close-paren?, dot? <span class="Special">&lt;-</span> <a href='parse.mu.html#L36'>parse-sexpression</a> tokens, right-ah, trace
<span id="L116" class="LineNr">116 </span> <a href='trace.mu.html#L250'>trace-higher</a> trace
<span id="L117" class="LineNr">117 </span> <span class="PreProc">return</span> close-paren?, dot?
<span id="L118" class="LineNr">118 </span> <span class="Delimiter">}</span>
<span id="L119" class="LineNr">119 </span> <span class="muComment"># dot -&gt; return</span>
<span id="L120" class="LineNr">120 </span> <span class="PreProc">var</span> dot?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='tokenize.mu.html#L963'>dot-token?</a> curr-token
<span id="L121" class="LineNr">121 </span> compare dot?, <span class="Constant">0</span>/false
<span id="L122" class="LineNr">122 </span> <span class="Delimiter">{</span>
<span id="L123" class="LineNr">123 </span> <span class="PreProc">break-if-=</span>
<span id="L124" class="LineNr">124 </span> <a href='trace.mu.html#L250'>trace-higher</a> trace
<span id="L125" class="LineNr">125 </span> <span class="PreProc">return</span> <span class="Constant">0</span>/false, <span class="Constant">1</span>/true
<span id="L126" class="LineNr">126 </span> <span class="Delimiter">}</span>
<span id="L127" class="LineNr">127 </span> <span class="muComment"># not bracket -&gt; parse atom</span>
<span id="L128" class="LineNr">128 </span> <span class="PreProc">var</span> <a href='tokenize.mu.html#L878'>bracket-token?</a>/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='tokenize.mu.html#L878'>bracket-token?</a> curr-token
<span id="L129" class="LineNr">129 </span> compare <a href='tokenize.mu.html#L878'>bracket-token?</a>, <span class="Constant">0</span>/false
<span id="L130" class="LineNr">130 </span> <span class="Delimiter">{</span>
<span id="L131" class="LineNr">131 </span> <span class="PreProc">break-if-!=</span>
<span id="L132" class="LineNr">132 </span> <a href='parse.mu.html#L207'>parse-atom</a> curr-token, _out, trace
<span id="L133" class="LineNr">133 </span> <span class="PreProc">break</span> $parse-sexpression:type-check
<span id="L134" class="LineNr">134 </span> <span class="Delimiter">}</span>
<span id="L135" class="LineNr">135 </span> <span class="muComment"># open paren -&gt; parse list</span>
<span id="L136" class="LineNr">136 </span> <span class="PreProc">var</span> open-paren?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='tokenize.mu.html#L931'>open-paren-token?</a> curr-token
<span id="L137" class="LineNr">137 </span> compare open-paren?, <span class="Constant">0</span>/false
<span id="L138" class="LineNr">138 </span> <span class="Delimiter">{</span>
<span id="L139" class="LineNr">139 </span> <span class="PreProc">break-if-=</span>
<span id="L140" class="LineNr">140 </span> <span class="PreProc">var</span> curr/<span class="muRegEsi">esi</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> copy _out
<span id="L141" class="LineNr">141 </span> <a href='cell.mu.html#L102'>allocate-pair</a> curr
<span id="L142" class="LineNr">142 </span> <span class="PreProc">var</span> curr-addr/<span class="muRegEax">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *curr
<span id="L143" class="LineNr">143 </span> <span class="PreProc">var</span> left/<span class="muRegEdx">edx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> get curr-addr, left
<span id="L144" class="LineNr">144 </span> <span class="Delimiter">{</span>
<span id="L145" class="LineNr">145 </span> <span class="PreProc">var</span> close-paren?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> copy <span class="Constant">0</span>/false
<span id="L146" class="LineNr">146 </span> <span class="PreProc">var</span> dot?/<span class="muRegEcx">ecx</span>: boolean <span class="Special">&lt;-</span> copy <span class="Constant">0</span>/false
<span id="L147" class="LineNr">147 </span> close-paren?, dot? <span class="Special">&lt;-</span> <a href='parse.mu.html#L36'>parse-sexpression</a> tokens, left, trace
<span id="L148" class="LineNr">148 </span> <span class="Delimiter">{</span>
<span id="L149" class="LineNr">149 </span> compare dot?, <span class="Constant">0</span>/false
<span id="L150" class="LineNr">150 </span> <span class="PreProc">break-if-=</span>
<span id="L151" class="LineNr">151 </span> <span class="Special"><a href='trace.mu.html#L197'>error</a></span> trace, <span class="Constant">&quot;'.' cannot be at the start of a list&quot;</span>
<span id="L152" class="LineNr">152 </span> <span class="PreProc">return</span> <span class="Constant">1</span>/true, dot?
<span id="L153" class="LineNr">153 </span> <span class="Delimiter">}</span>
<span id="L154" class="LineNr">154 </span> compare close-paren?, <span class="Constant">0</span>/false
<span id="L155" class="LineNr">155 </span> <span class="PreProc">break-if-!=</span>
<span id="L156" class="LineNr">156 </span> <span class="PreProc">var</span> curr-addr/<span class="muRegEax">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *curr
<span id="L157" class="LineNr">157 </span> curr <span class="Special">&lt;-</span> get curr-addr, right
<span id="L158" class="LineNr">158 </span> <span class="PreProc">var</span> tmp-storage: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L159" class="LineNr">159 </span> <span class="PreProc">var</span> tmp/<span class="muRegEdx">edx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address tmp-storage
<span id="L160" class="LineNr">160 </span> $parse-sexpression:list-loop: <span class="Delimiter">{</span>
<span id="L161" class="LineNr">161 </span> <span class="PreProc">var</span> close-paren?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> copy <span class="Constant">0</span>/false
<span id="L162" class="LineNr">162 </span> <span class="PreProc">var</span> dot?/<span class="muRegEcx">ecx</span>: boolean <span class="Special">&lt;-</span> copy <span class="Constant">0</span>/false
<span id="L163" class="LineNr">163 </span> close-paren?, dot? <span class="Special">&lt;-</span> <a href='parse.mu.html#L36'>parse-sexpression</a> tokens, tmp, trace
<span id="L164" class="LineNr">164 </span> <span class="muComment"># '.' -&gt; clean up right here and return</span>
<span id="L165" class="LineNr">165 </span> compare dot?, <span class="Constant">0</span>/false
<span id="L166" class="LineNr">166 </span> <span class="Delimiter">{</span>
<span id="L167" class="LineNr">167 </span> <span class="PreProc">break-if-=</span>
<span id="L168" class="LineNr">168 </span> <a href='parse.mu.html#L281'>parse-dot-tail</a> tokens, curr, trace
<span id="L169" class="LineNr">169 </span> <span class="PreProc">return</span> <span class="Constant">0</span>/false, <span class="Constant">0</span>/false
<span id="L170" class="LineNr">170 </span> <span class="Delimiter">}</span>
<span id="L171" class="LineNr">171 </span> <a href='cell.mu.html#L102'>allocate-pair</a> curr
<span id="L172" class="LineNr">172 </span> <span class="muComment"># ')' -&gt; return</span>
<span id="L173" class="LineNr">173 </span> compare close-paren?, <span class="Constant">0</span>/false
<span id="L174" class="LineNr">174 </span> <span class="PreProc">break-if-!=</span>
<span id="L175" class="LineNr">175 </span> <span class="PreProc">var</span> curr-addr/<span class="muRegEax">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *curr
<span id="L176" class="LineNr">176 </span> <span class="PreProc">var</span> left/<span class="muRegEcx">ecx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> get curr-addr, left
<span id="L177" class="LineNr">177 </span> copy-object tmp, left
<span id="L178" class="LineNr">178 </span> <span class="muComment">#</span>
<span id="L179" class="LineNr">179 </span> curr <span class="Special">&lt;-</span> get curr-addr, right
<span id="L180" class="LineNr">180 </span> <span class="PreProc">loop</span>
<span id="L181" class="LineNr">181 </span> <span class="Delimiter">}</span>
<span id="L182" class="LineNr">182 </span> <span class="Delimiter">}</span>
<span id="L183" class="LineNr">183 </span> <span class="PreProc">break</span> $parse-sexpression:type-check
<span id="L184" class="LineNr">184 </span> <span class="Delimiter">}</span>
<span id="L185" class="LineNr">185 </span> <span class="muComment"># close paren -&gt; return</span>
<span id="L186" class="LineNr">186 </span> <span class="PreProc">var</span> close-paren?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='tokenize.mu.html#L947'>close-paren-token?</a> curr-token
<span id="L187" class="LineNr">187 </span> compare close-paren?, <span class="Constant">0</span>/false
<span id="L188" class="LineNr">188 </span> <span class="Delimiter">{</span>
<span id="L189" class="LineNr">189 </span> <span class="PreProc">break-if-=</span>
<span id="L190" class="LineNr">190 </span> <a href='trace.mu.html#L250'>trace-higher</a> trace
<span id="L191" class="LineNr">191 </span> <span class="PreProc">return</span> <span class="Constant">1</span>/true, <span class="Constant">0</span>/false
<span id="L192" class="LineNr">192 </span> <span class="Delimiter">}</span>
<span id="L193" class="LineNr">193 </span> <span class="muComment"># otherwise abort</span>
<span id="L194" class="LineNr">194 </span> <span class="PreProc">var</span> stream-storage: (stream byte <span class="Constant">0x400</span>)
<span id="L195" class="LineNr">195 </span> <span class="PreProc">var</span> stream/<span class="muRegEdx">edx</span>: (addr stream byte) <span class="Special">&lt;-</span> address stream-storage
<span id="L196" class="LineNr">196 </span> <a href='../108write.subx.html#L11'>write</a> stream, <span class="Constant">&quot;unexpected <a href='tokenize.mu.html#L3'>token</a> &quot;</span>
<span id="L197" class="LineNr">197 </span> <span class="PreProc">var</span> curr-token-data-ah/<span class="muRegEax">eax</span>: (addr handle stream byte) <span class="Special">&lt;-</span> get curr-token, text-data
<span id="L198" class="LineNr">198 </span> <span class="PreProc">var</span> curr-token-data/<span class="muRegEax">eax</span>: (addr stream byte) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *curr-token-data-ah
<span id="L199" class="LineNr">199 </span> <a href='../106stream.subx.html#L59'>rewind-stream</a> curr-token-data
<span id="L200" class="LineNr">200 </span> <a href='../113write-stream.subx.html#L8'>write-stream</a> stream, curr-token-data
<span id="L201" class="LineNr">201 </span> <span class="Special"><a href='trace.mu.html#L211'>error-stream</a></span> trace, stream
<span id="L202" class="LineNr">202 </span> <span class="Delimiter">}</span>
<span id="L203" class="LineNr">203 </span> <a href='trace.mu.html#L250'>trace-higher</a> trace
<span id="L204" class="LineNr">204 </span> <span class="PreProc">return</span> <span class="Constant">0</span>/false, <span class="Constant">0</span>/false
<span id="L205" class="LineNr">205 </span><span class="Delimiter">}</span>
<span id="L206" class="LineNr">206 </span>
<span id="L207" class="LineNr">207 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='parse.mu.html#L207'>parse-atom</a></span> _curr-token: (addr <a href='tokenize.mu.html#L3'>token</a>), _out: (addr handle <a href='cell.mu.html#L1'>cell</a>), trace: (addr trace) <span class="Delimiter">{</span>
<span id="L208" class="LineNr">208 </span> <a href='trace.mu.html#L185'>trace-text</a> trace, <span class="Constant">&quot;parse&quot;</span>, <span class="Constant">&quot;parse atom&quot;</span>
<span id="L209" class="LineNr">209 </span> <span class="PreProc">var</span> curr-token/<span class="muRegEcx">ecx</span>: (addr <a href='tokenize.mu.html#L3'>token</a>) <span class="Special">&lt;-</span> copy _curr-token
<span id="L210" class="LineNr">210 </span> <span class="PreProc">var</span> curr-token-data-ah/<span class="muRegEax">eax</span>: (addr handle stream byte) <span class="Special">&lt;-</span> get curr-token, text-data
<span id="L211" class="LineNr">211 </span> <span class="PreProc">var</span> _curr-token-data/<span class="muRegEax">eax</span>: (addr stream byte) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *curr-token-data-ah
<span id="L212" class="LineNr">212 </span> <span class="PreProc">var</span> curr-token-data/<span class="muRegEsi">esi</span>: (addr stream byte) <span class="Special">&lt;-</span> copy _curr-token-data
<span id="L213" class="LineNr">213 </span> trace trace, <span class="Constant">&quot;parse&quot;</span>, curr-token-data
<span id="L214" class="LineNr">214 </span> <span class="muComment"># number</span>
<span id="L215" class="LineNr">215 </span> <span class="PreProc">var</span> <a href='tokenize.mu.html#L847'>number-token?</a>/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='tokenize.mu.html#L847'>number-token?</a> curr-token
<span id="L216" class="LineNr">216 </span> compare <a href='tokenize.mu.html#L847'>number-token?</a>, <span class="Constant">0</span>/false
<span id="L217" class="LineNr">217 </span> <span class="Delimiter">{</span>
<span id="L218" class="LineNr">218 </span> <span class="PreProc">break-if-=</span>
<span id="L219" class="LineNr">219 </span> <a href='../106stream.subx.html#L59'>rewind-stream</a> curr-token-data
<span id="L220" class="LineNr">220 </span> <span class="PreProc">var</span> _val/<span class="muRegEax">eax</span>: int <span class="Special">&lt;-</span> <a href='../311decimal-int.subx.html#L48'>parse-decimal-int-from-stream</a> curr-token-data
<span id="L221" class="LineNr">221 </span> <span class="PreProc">var</span> val/<span class="muRegEcx">ecx</span>: int <span class="Special">&lt;-</span> copy _val
<span id="L222" class="LineNr">222 </span> <span class="PreProc">var</span> val-float/<span class="Constant">xmm0</span>: float <span class="Special">&lt;-</span> convert val
<span id="L223" class="LineNr">223 </span> <a href='cell.mu.html#L68'>allocate-number</a> _out
<span id="L224" class="LineNr">224 </span> <span class="PreProc">var</span> out/<span class="muRegEax">eax</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> copy _out
<span id="L225" class="LineNr">225 </span> <span class="PreProc">var</span> out-addr/<span class="muRegEax">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *out
<span id="L226" class="LineNr">226 </span> <span class="PreProc">var</span> dest/<span class="muRegEdi">edi</span>: (addr float) <span class="Special">&lt;-</span> get out-addr, number-data
<span id="L227" class="LineNr">227 </span> copy-to *dest, val-float
<span id="L228" class="LineNr">228 </span> <span class="Delimiter">{</span>
<span id="L229" class="LineNr">229 </span> <span class="Delimiter">{</span>
<span id="L230" class="LineNr">230 </span> <span class="PreProc">var</span> <a href='trace.mu.html#L123'>should-trace?</a>/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='trace.mu.html#L123'>should-trace?</a> trace
<span id="L231" class="LineNr">231 </span> compare <a href='trace.mu.html#L123'>should-trace?</a>, <span class="Constant">0</span>/false
<span id="L232" class="LineNr">232 </span> <span class="Delimiter">}</span>
<span id="L233" class="LineNr">233 </span> <span class="PreProc">break-if-=</span>
<span id="L234" class="LineNr">234 </span> <span class="PreProc">var</span> stream-storage: (stream byte <span class="Constant">0x400</span>)
<span id="L235" class="LineNr">235 </span> <span class="PreProc">var</span> stream/<span class="muRegEcx">ecx</span>: (addr stream byte) <span class="Special">&lt;-</span> address stream-storage
<span id="L236" class="LineNr">236 </span> <a href='../108write.subx.html#L11'>write</a> stream, <span class="Constant">&quot;=&gt; number &quot;</span>
<span id="L237" class="LineNr">237 </span> <span class="PreProc">var</span> nested-trace-storage: trace
<span id="L238" class="LineNr">238 </span> <span class="PreProc">var</span> nested-trace/<span class="muRegEdi">edi</span>: (addr trace) <span class="Special">&lt;-</span> address nested-trace-storage
<span id="L239" class="LineNr">239 </span> <a href='trace.mu.html#L61'>initialize-trace</a> nested-trace, <span class="Constant">1</span>/only-errors, <span class="Constant">0x10</span>/capacity, <span class="Constant">0</span>/visible
<span id="L240" class="LineNr">240 </span> <a href='print.mu.html#L209'>print-number</a> out-addr, stream, nested-trace
<span id="L241" class="LineNr">241 </span> trace trace, <span class="Constant">&quot;parse&quot;</span>, stream
<span id="L242" class="LineNr">242 </span> <span class="Delimiter">}</span>
<span id="L243" class="LineNr">243 </span> <span class="PreProc">return</span>
<span id="L244" class="LineNr">244 </span> <span class="Delimiter">}</span>
<span id="L245" class="LineNr">245 </span> <span class="muComment"># default: copy either to a symbol or a stream</span>
<span id="L246" class="LineNr">246 </span> <span class="muComment"># stream token -&gt; literal</span>
<span id="L247" class="LineNr">247 </span> <span class="PreProc">var</span> <a href='tokenize.mu.html#L989'>stream-token?</a>/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='tokenize.mu.html#L989'>stream-token?</a> curr-token
<span id="L248" class="LineNr">248 </span> compare <a href='tokenize.mu.html#L989'>stream-token?</a>, <span class="Constant">0</span>/false
<span id="L249" class="LineNr">249 </span> <span class="Delimiter">{</span>
<span id="L250" class="LineNr">250 </span> <span class="PreProc">break-if-=</span>
<span id="L251" class="LineNr">251 </span> <a href='cell.mu.html#L58'>allocate-stream</a> _out
<span id="L252" class="LineNr">252 </span> <span class="Delimiter">}</span>
<span id="L253" class="LineNr">253 </span> compare <a href='tokenize.mu.html#L989'>stream-token?</a>, <span class="Constant">0</span>/false
<span id="L254" class="LineNr">254 </span> <span class="Delimiter">{</span>
<span id="L255" class="LineNr">255 </span> <span class="PreProc">break-if-!=</span>
<span id="L256" class="LineNr">256 </span> <a href='cell.mu.html#L21'>allocate-symbol</a> _out
<span id="L257" class="LineNr">257 </span> <span class="Delimiter">}</span>
<span id="L258" class="LineNr">258 </span> <span class="muComment"># copy token data</span>
<span id="L259" class="LineNr">259 </span> <span class="PreProc">var</span> out/<span class="muRegEax">eax</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> copy _out
<span id="L260" class="LineNr">260 </span> <span class="PreProc">var</span> out-addr/<span class="muRegEax">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *out
<span id="L261" class="LineNr">261 </span> <span class="PreProc">var</span> curr-token-data-ah/<span class="muRegEcx">ecx</span>: (addr handle stream byte) <span class="Special">&lt;-</span> get curr-token, text-data
<span id="L262" class="LineNr">262 </span> <span class="PreProc">var</span> dest-ah/<span class="muRegEdx">edx</span>: (addr handle stream byte) <span class="Special">&lt;-</span> get out-addr, text-data
<span id="L263" class="LineNr">263 </span> copy-object curr-token-data-ah, dest-ah
<span id="L264" class="LineNr">264 </span> <span class="Delimiter">{</span>
<span id="L265" class="LineNr">265 </span> <span class="Delimiter">{</span>
<span id="L266" class="LineNr">266 </span> <span class="PreProc">var</span> <a href='trace.mu.html#L123'>should-trace?</a>/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='trace.mu.html#L123'>should-trace?</a> trace
<span id="L267" class="LineNr">267 </span> compare <a href='trace.mu.html#L123'>should-trace?</a>, <span class="Constant">0</span>/false
<span id="L268" class="LineNr">268 </span> <span class="Delimiter">}</span>
<span id="L269" class="LineNr">269 </span> <span class="PreProc">break-if-=</span>
<span id="L270" class="LineNr">270 </span> <span class="PreProc">var</span> stream-storage: (stream byte <span class="Constant">0x400</span>)
<span id="L271" class="LineNr">271 </span> <span class="PreProc">var</span> stream/<span class="muRegEcx">ecx</span>: (addr stream byte) <span class="Special">&lt;-</span> address stream-storage
<span id="L272" class="LineNr">272 </span> <a href='../108write.subx.html#L11'>write</a> stream, <span class="Constant">&quot;=&gt; symbol &quot;</span>
<span id="L273" class="LineNr">273 </span> <span class="PreProc">var</span> nested-trace-storage: trace
<span id="L274" class="LineNr">274 </span> <span class="PreProc">var</span> nested-trace/<span class="muRegEdi">edi</span>: (addr trace) <span class="Special">&lt;-</span> address nested-trace-storage
<span id="L275" class="LineNr">275 </span> <a href='trace.mu.html#L61'>initialize-trace</a> nested-trace, <span class="Constant">1</span>/only-errors, <span class="Constant">0x10</span>/capacity, <span class="Constant">0</span>/visible
<span id="L276" class="LineNr">276 </span> <a href='print.mu.html#L146'>print-symbol</a> out-addr, stream, nested-trace
<span id="L277" class="LineNr">277 </span> trace trace, <span class="Constant">&quot;parse&quot;</span>, stream
<span id="L278" class="LineNr">278 </span> <span class="Delimiter">}</span>
<span id="L279" class="LineNr">279 </span><span class="Delimiter">}</span>
<span id="L280" class="LineNr">280 </span>
<span id="L281" class="LineNr">281 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='parse.mu.html#L281'>parse-dot-tail</a></span> tokens: (addr stream <a href='tokenize.mu.html#L3'>token</a>), _out: (addr handle <a href='cell.mu.html#L1'>cell</a>), trace: (addr trace) <span class="Delimiter">{</span>
<span id="L282" class="LineNr">282 </span> <span class="PreProc">var</span> out/<span class="muRegEdi">edi</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> copy _out
<span id="L283" class="LineNr">283 </span> <span class="PreProc">var</span> close-paren?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> copy <span class="Constant">0</span>/false
<span id="L284" class="LineNr">284 </span> <span class="PreProc">var</span> dot?/<span class="muRegEcx">ecx</span>: boolean <span class="Special">&lt;-</span> copy <span class="Constant">0</span>/false
<span id="L285" class="LineNr">285 </span> close-paren?, dot? <span class="Special">&lt;-</span> <a href='parse.mu.html#L36'>parse-sexpression</a> tokens, out, trace
<span id="L286" class="LineNr">286 </span> compare close-paren?, <span class="Constant">0</span>/false
<span id="L287" class="LineNr">287 </span> <span class="Delimiter">{</span>
<span id="L288" class="LineNr">288 </span> <span class="PreProc">break-if-=</span>
<span id="L289" class="LineNr">289 </span> <span class="Special"><a href='trace.mu.html#L197'>error</a></span> trace, <span class="Constant">&quot;'. .' makes no sense&quot;</span>
<span id="L289" class="LineNr">289 </span> <span class="Special"><a href='trace.mu.html#L197'>error</a></span> trace, <span class="Constant">&quot;'. )' makes no sense&quot;</span>
<span id="L290" class="LineNr">290 </span> <span class="PreProc">return</span>
<span id="L291" class="LineNr">291 </span> <span class="Delimiter">}</span>
<span id="L292" class="LineNr">292 </span> <span class="muComment">#</span>
<span id="L293" class="LineNr">293 </span> <span class="PreProc">var</span> dummy: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L294" class="LineNr">294 </span> <span class="PreProc">var</span> dummy-ah/<span class="muRegEdi">edi</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address dummy
<span id="L295" class="LineNr">295 </span> close-paren?, dot? <span class="Special">&lt;-</span> <a href='parse.mu.html#L30'>parse-sexpression</a> tokens, dummy-ah, trace
<span id="L296" class="LineNr">296 </span> compare close-paren?, <span class="Constant">0</span>/false
<span id="L297" class="LineNr">297 </span> <span class="Delimiter">{</span>
<span id="L298" class="LineNr">298 </span> <span class="PreProc">break-if-!=</span>
<span id="L299" class="LineNr">299 </span> <span class="Special"><a href='trace.mu.html#L197'>error</a></span> trace, <span class="Constant">&quot;cannot have multiple expressions between '.' and ')'&quot;</span>
<span id="L300" class="LineNr">300 </span> <span class="PreProc">return</span>
<span id="L301" class="LineNr">301 </span> <span class="Delimiter">}</span>
<span id="L302" class="LineNr">302 </span> compare dot?, <span class="Constant">0</span>/false
<span id="L292" class="LineNr">292 </span> compare dot?, <span class="Constant">0</span>/false
<span id="L293" class="LineNr">293 </span> <span class="Delimiter">{</span>
<span id="L294" class="LineNr">294 </span> <span class="PreProc">break-if-=</span>
<span id="L295" class="LineNr">295 </span> <span class="Special"><a href='trace.mu.html#L197'>error</a></span> trace, <span class="Constant">&quot;'. .' makes no sense&quot;</span>
<span id="L296" class="LineNr">296 </span> <span class="PreProc">return</span>
<span id="L297" class="LineNr">297 </span> <span class="Delimiter">}</span>
<span id="L298" class="LineNr">298 </span> <span class="muComment">#</span>
<span id="L299" class="LineNr">299 </span> <span class="PreProc">var</span> dummy: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L300" class="LineNr">300 </span> <span class="PreProc">var</span> dummy-ah/<span class="muRegEdi">edi</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address dummy
<span id="L301" class="LineNr">301 </span> close-paren?, dot? <span class="Special">&lt;-</span> <a href='parse.mu.html#L36'>parse-sexpression</a> tokens, dummy-ah, trace
<span id="L302" class="LineNr">302 </span> compare close-paren?, <span class="Constant">0</span>/false
<span id="L303" class="LineNr">303 </span> <span class="Delimiter">{</span>
<span id="L304" class="LineNr">304 </span> <span class="PreProc">break-if-=</span>
<span id="L305" class="LineNr">305 </span> <span class="Special"><a href='trace.mu.html#L197'>error</a></span> trace, <span class="Constant">&quot;cannot have two dots in a single list&quot;</span>
<span id="L304" class="LineNr">304 </span> <span class="PreProc">break-if-!=</span>
<span id="L305" class="LineNr">305 </span> <span class="Special"><a href='trace.mu.html#L197'>error</a></span> trace, <span class="Constant">&quot;cannot have multiple expressions between '.' and ')'&quot;</span>
<span id="L306" class="LineNr">306 </span> <span class="PreProc">return</span>
<span id="L307" class="LineNr">307 </span> <span class="Delimiter">}</span>
<span id="L308" class="LineNr">308 </span><span class="Delimiter">}</span>
<span id="L308" class="LineNr">308 </span> compare dot?, <span class="Constant">0</span>/false
<span id="L309" class="LineNr">309 </span> <span class="Delimiter">{</span>
<span id="L310" class="LineNr">310 </span> <span class="PreProc">break-if-=</span>
<span id="L311" class="LineNr">311 </span> <span class="Special"><a href='trace.mu.html#L197'>error</a></span> trace, <span class="Constant">&quot;cannot have two dots in a single list&quot;</span>
<span id="L312" class="LineNr">312 </span> <span class="PreProc">return</span>
<span id="L313" class="LineNr">313 </span> <span class="Delimiter">}</span>
<span id="L314" class="LineNr">314 </span><span class="Delimiter">}</span>
</pre>
</body>
</html>

File diff suppressed because it is too large Load Diff

View File

@ -197,14 +197,14 @@ if ('onhashchange' in window) {
<span id="L133" class="LineNr">133 </span> d1, d2 <span class="Special">&lt;-</span> <a href='../501draw-text.mu.html#L202'>draw-stream-wrapping-right-then-down</a> <span class="Constant">0</span>/screen, stream, <span class="Constant">0</span>/xmin, <span class="Constant">0</span>/ymin, <span class="Constant">0x80</span>/xmax, <span class="Constant">0x30</span>/ymax, <span class="Constant">0</span>/x, <span class="Constant">0</span>/y, <span class="Constant">7</span>/fg, <span class="Constant">0xc5</span>/bg=blue-bg
<span id="L134" class="LineNr">134 </span><span class="Delimiter">}</span>
<span id="L135" class="LineNr">135 </span>
<span id="L136" class="LineNr">136 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='print.mu.html#L136'>dump-cell-from-cursor-over-full-screen</a></span> in-ah: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Delimiter">{</span>
<span id="L136" class="LineNr">136 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='print.mu.html#L136'>dump-cell-from-cursor-over-full-screen</a></span> in-ah: (addr handle <a href='cell.mu.html#L1'>cell</a>), fg: int, bg: int <span class="Delimiter">{</span>
<span id="L137" class="LineNr">137 </span> <span class="PreProc">var</span> stream-storage: (stream byte <span class="Constant">0x200</span>)
<span id="L138" class="LineNr">138 </span> <span class="PreProc">var</span> stream/<span class="muRegEdx">edx</span>: (addr stream byte) <span class="Special">&lt;-</span> address stream-storage
<span id="L139" class="LineNr">139 </span> <span class="PreProc">var</span> trace-storage: trace
<span id="L140" class="LineNr">140 </span> <span class="PreProc">var</span> trace/<span class="muRegEdi">edi</span>: (addr trace) <span class="Special">&lt;-</span> address trace-storage
<span id="L141" class="LineNr">141 </span> <a href='trace.mu.html#L61'>initialize-trace</a> trace, <span class="Constant">1</span>/only-errors, <span class="Constant">0x10</span>/capacity, <span class="Constant">0</span>/visible
<span id="L142" class="LineNr">142 </span> <a href='print.mu.html#L7'>print-cell</a> in-ah, stream, trace
<span id="L143" class="LineNr">143 </span> <a href='../501draw-text.mu.html#L235'>draw-stream-wrapping-right-then-down-from-cursor-over-full-screen</a> <span class="Constant">0</span>/screen, stream, <span class="Constant">7</span>/fg, <span class="Constant">0</span>/bg
<span id="L143" class="LineNr">143 </span> <a href='../501draw-text.mu.html#L235'>draw-stream-wrapping-right-then-down-from-cursor-over-full-screen</a> <span class="Constant">0</span>/screen, stream, fg, bg
<span id="L144" class="LineNr">144 </span><span class="Delimiter">}</span>
<span id="L145" class="LineNr">145 </span>
<span id="L146" class="LineNr">146 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='print.mu.html#L146'>print-symbol</a></span> _in: (addr <a href='cell.mu.html#L1'>cell</a>), out: (addr stream byte), trace: (addr trace) <span class="Delimiter">{</span>
@ -281,7 +281,7 @@ if ('onhashchange' in window) {
<span id="L217" class="LineNr">217 </span> <span class="Delimiter">}</span>
<span id="L218" class="LineNr">218 </span> <span class="PreProc">var</span> in/<span class="muRegEsi">esi</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> copy _in
<span id="L219" class="LineNr">219 </span> <span class="PreProc">var</span> val/<span class="muRegEax">eax</span>: (addr float) <span class="Special">&lt;-</span> get in, number-data
<span id="L220" class="LineNr">220 </span> <a href='../412render-float-decimal.mu.html#L163'>write-float-decimal-approximate</a> out, *val, <span class="Constant">3</span>/precision
<span id="L220" class="LineNr">220 </span> <a href='../412render-float-decimal.mu.html#L163'>write-float-decimal-approximate</a> out, *val, <span class="Constant">0x10</span>/precision
<span id="L221" class="LineNr">221 </span> <span class="muComment"># trace</span>
<span id="L222" class="LineNr">222 </span> <span class="Delimiter">{</span>
<span id="L223" class="LineNr">223 </span> <span class="PreProc">var</span> <a href='trace.mu.html#L123'>should-trace?</a>/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='trace.mu.html#L123'>should-trace?</a> trace
@ -292,7 +292,7 @@ if ('onhashchange' in window) {
<span id="L228" class="LineNr">228 </span> <span class="PreProc">var</span> stream-storage: (stream byte <span class="Constant">0x40</span>)
<span id="L229" class="LineNr">229 </span> <span class="PreProc">var</span> stream/<span class="muRegEcx">ecx</span>: (addr stream byte) <span class="Special">&lt;-</span> address stream-storage
<span id="L230" class="LineNr">230 </span> <a href='../108write.subx.html#L11'>write</a> stream, <span class="Constant">&quot;=&gt; number &quot;</span>
<span id="L231" class="LineNr">231 </span> <a href='../412render-float-decimal.mu.html#L163'>write-float-decimal-approximate</a> stream, *val, <span class="Constant">3</span>/precision
<span id="L231" class="LineNr">231 </span> <a href='../412render-float-decimal.mu.html#L163'>write-float-decimal-approximate</a> stream, *val, <span class="Constant">0x10</span>/precision
<span id="L232" class="LineNr">232 </span> trace trace, <span class="Constant">&quot;print&quot;</span>, stream
<span id="L233" class="LineNr">233 </span><span class="Delimiter">}</span>
<span id="L234" class="LineNr">234 </span>

View File

@ -18,6 +18,7 @@ a { color:inherit; }
.muRegEcx { color: #af875f; }
.Special { color: #ff6060; }
.LineNr { }
.muRegEdx { color: #878700; }
.Constant { color: #008787; }
.muRegEax { color: #875f00; }
.Delimiter { color: #c000c0; }
@ -59,21 +60,29 @@ if ('onhashchange' in window) {
<a href='https://github.com/akkartik/mu/blob/main/shell/read.mu'>https://github.com/akkartik/mu/blob/main/shell/read.mu</a>
<pre id='vimCodeElement'>
<span id="L1" class="LineNr"> 1 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='read.mu.html#L1'>read-cell</a></span> in: (addr <a href='gap-buffer.mu.html#L3'>gap-buffer</a>), out: (addr handle <a href='cell.mu.html#L1'>cell</a>), trace: (addr trace) <span class="Delimiter">{</span>
<span id="L2" class="LineNr"> 2 </span> <span class="muComment"># TODO: we may be able to generate tokens lazily and drop this stream.</span>
<span id="L3" class="LineNr"> 3 </span> <span class="muComment"># Depends on how we implement indent-sensitivity and infix.</span>
<span id="L4" class="LineNr"> 4 </span> <span class="PreProc">var</span> tokens-storage: (stream <a href='cell.mu.html#L1'>cell</a> <span class="Constant">0x400</span>)
<span id="L5" class="LineNr"> 5 </span> <span class="PreProc">var</span> tokens/<span class="muRegEcx">ecx</span>: (addr stream <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address tokens-storage
<span id="L6" class="LineNr"> 6 </span> <a href='tokenize.mu.html#L5'>tokenize</a> in, tokens, trace
<span id="L7" class="LineNr"> 7 </span> <span class="PreProc">var</span> error?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='trace.mu.html#L94'>has-errors?</a> trace
<span id="L8" class="LineNr"> 8 </span> compare error?, <span class="Constant">0</span>/false
<span id="L9" class="LineNr"> 9 </span> <span class="Delimiter">{</span>
<span id="L10" class="LineNr">10 </span> <span class="PreProc">break-if-=</span>
<span id="L11" class="LineNr">11 </span> <span class="PreProc">return</span>
<span id="L12" class="LineNr">12 </span> <span class="Delimiter">}</span>
<span id="L13" class="LineNr">13 </span> <span class="muComment"># TODO: insert parens</span>
<span id="L14" class="LineNr">14 </span> <span class="muComment"># TODO: transform infix</span>
<span id="L15" class="LineNr">15 </span> <a href='parse.mu.html#L1'>parse-input</a> tokens, out, trace
<span id="L16" class="LineNr">16 </span><span class="Delimiter">}</span>
<span id="L2" class="LineNr"> 2 </span> <span class="muComment"># eagerly tokenize everything so that the phases are easier to see in the trace</span>
<span id="L3" class="LineNr"> 3 </span> <span class="PreProc">var</span> tokens-storage: (stream <a href='tokenize.mu.html#L3'>token</a> <span class="Constant">0x400</span>)
<span id="L4" class="LineNr"> 4 </span> <span class="PreProc">var</span> tokens/<span class="muRegEdx">edx</span>: (addr stream <a href='tokenize.mu.html#L3'>token</a>) <span class="Special">&lt;-</span> address tokens-storage
<span id="L5" class="LineNr"> 5 </span> <a href='tokenize.mu.html#L13'>tokenize</a> in, tokens, trace
<span id="L6" class="LineNr"> 6 </span> <span class="PreProc">var</span> error?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='trace.mu.html#L94'>has-errors?</a> trace
<span id="L7" class="LineNr"> 7 </span> compare error?, <span class="Constant">0</span>/false
<span id="L8" class="LineNr"> 8 </span> <span class="Delimiter">{</span>
<span id="L9" class="LineNr"> 9 </span> <span class="PreProc">break-if-=</span>
<span id="L10" class="LineNr">10 </span> <span class="PreProc">return</span>
<span id="L11" class="LineNr">11 </span> <span class="Delimiter">}</span>
<span id="L12" class="LineNr">12 </span> <span class="muComment"># insert more parens based on indentation</span>
<span id="L13" class="LineNr">13 </span> <span class="PreProc">var</span> parenthesized-tokens-storage: (stream <a href='tokenize.mu.html#L3'>token</a> <span class="Constant">0x400</span>)
<span id="L14" class="LineNr">14 </span> <span class="PreProc">var</span> parenthesized-tokens/<span class="muRegEcx">ecx</span>: (addr stream <a href='tokenize.mu.html#L3'>token</a>) <span class="Special">&lt;-</span> address parenthesized-tokens-storage
<span id="L15" class="LineNr">15 </span> <a href='parenthesize.mu.html#L15'>parenthesize</a> tokens, parenthesized-tokens, trace
<span id="L16" class="LineNr">16 </span> <span class="PreProc">var</span> error?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='trace.mu.html#L94'>has-errors?</a> trace
<span id="L17" class="LineNr">17 </span> compare error?, <span class="Constant">0</span>/false
<span id="L18" class="LineNr">18 </span> <span class="Delimiter">{</span>
<span id="L19" class="LineNr">19 </span> <span class="PreProc">break-if-=</span>
<span id="L20" class="LineNr">20 </span> <span class="PreProc">return</span>
<span id="L21" class="LineNr">21 </span> <span class="Delimiter">}</span>
<span id="L22" class="LineNr">22 </span> <a href='parse.mu.html#L1'>parse-input</a> parenthesized-tokens, out, trace
<span id="L23" class="LineNr">23 </span> <a href='infix.mu.html#L1'>transform-infix</a> out, trace
<span id="L24" class="LineNr">24 </span><span class="Delimiter">}</span>
</pre>
</body>
</html>

View File

@ -137,9 +137,9 @@ if ('onhashchange' in window) {
<span id="L71" class="LineNr"> 71 </span> <span class="PreProc">break-if-!=</span>
<span id="L72" class="LineNr"> 72 </span> <span class="PreProc">return</span>
<span id="L73" class="LineNr"> 73 </span> <span class="Delimiter">}</span>
<span id="L74" class="LineNr"> 74 </span> <a href='../108write.subx.html#L11'>write</a> out, <span class="Constant">&quot; (<a href='sandbox.mu.html#L1'>sandbox</a> . &quot;</span>
<span id="L74" class="LineNr"> 74 </span> <a href='../108write.subx.html#L11'>write</a> out, <span class="Constant">&quot; (<a href='sandbox.mu.html#L1'>sandbox</a> . [&quot;</span>
<span id="L75" class="LineNr"> 75 </span> <a href='gap-buffer.mu.html#L88'>append-gap-buffer</a> data, out
<span id="L76" class="LineNr"> 76 </span> <a href='../108write.subx.html#L11'>write</a> out, <span class="Constant">&quot;)\n&quot;</span>
<span id="L76" class="LineNr"> 76 </span> <a href='../108write.subx.html#L11'>write</a> out, <span class="Constant">&quot;])\n&quot;</span>
<span id="L77" class="LineNr"> 77 </span><span class="Delimiter">}</span>
<span id="L78" class="LineNr"> 78 </span>
<span id="L79" class="LineNr"> 79 </span><span class="muComment">##</span>
@ -599,7 +599,7 @@ if ('onhashchange' in window) {
<span id="L533" class="LineNr"> 533 </span> <span class="PreProc">break-if-=</span>
<span id="L534" class="LineNr"> 534 </span> <span class="PreProc">var</span> data-ah/<span class="muRegEax">eax</span>: (addr handle <a href='gap-buffer.mu.html#L3'>gap-buffer</a>) <span class="Special">&lt;-</span> get self, data
<span id="L535" class="LineNr"> 535 </span> <span class="PreProc">var</span> data/<span class="muRegEax">eax</span>: (addr <a href='gap-buffer.mu.html#L3'>gap-buffer</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *data-ah
<span id="L536" class="LineNr"> 536 </span> <a href='gap-buffer.mu.html#L1206'>edit-gap-buffer</a> data, key
<span id="L536" class="LineNr"> 536 </span> <a href='gap-buffer.mu.html#L1204'>edit-gap-buffer</a> data, key
<span id="L537" class="LineNr"> 537 </span> <span class="PreProc">return</span>
<span id="L538" class="LineNr"> 538 </span> <span class="Delimiter">}</span>
<span id="L539" class="LineNr"> 539 </span> <span class="muComment"># if cursor in keyboard, send key to keyboard</span>
@ -622,7 +622,7 @@ if ('onhashchange' in window) {
<span id="L556" class="LineNr"> 556 </span> <span class="Delimiter">}</span>
<span id="L557" class="LineNr"> 557 </span> <span class="PreProc">var</span> keyboard-ah/<span class="muRegEax">eax</span>: (addr handle <a href='gap-buffer.mu.html#L3'>gap-buffer</a>) <span class="Special">&lt;-</span> get inner-keyboard-var, keyboard-data
<span id="L558" class="LineNr"> 558 </span> <span class="PreProc">var</span> keyboard/<span class="muRegEax">eax</span>: (addr <a href='gap-buffer.mu.html#L3'>gap-buffer</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L223'>lookup</a> *keyboard-ah
<span id="L559" class="LineNr"> 559 </span> <a href='gap-buffer.mu.html#L1206'>edit-gap-buffer</a> keyboard, key
<span id="L559" class="LineNr"> 559 </span> <a href='gap-buffer.mu.html#L1204'>edit-gap-buffer</a> keyboard, key
<span id="L560" class="LineNr"> 560 </span> <span class="PreProc">return</span>
<span id="L561" class="LineNr"> 561 </span> <span class="Delimiter">}</span>
<span id="L562" class="LineNr"> 562 </span> <span class="muComment"># if cursor in trace, send key to trace</span>
@ -750,9 +750,9 @@ if ('onhashchange' in window) {
<span id="L684" class="LineNr"> 684 </span> <span class="muComment">#</span>
<span id="L685" class="LineNr"> 685 </span> <a href='sandbox.mu.html#L81'>render-sandbox</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <a href='sandbox.mu.html#L1'>sandbox</a>, <span class="Constant">0</span>/x, <span class="Constant">0</span>/y, <span class="Constant">0x80</span>/width, <span class="Constant">0x10</span>/height, <span class="Constant">1</span>/show-cursor
<span id="L686" class="LineNr"> 686 </span> <span class="muComment"># skip one line of padding</span>
<span id="L687" class="LineNr"> 687 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">1</span>/y, <span class="Constant">&quot; 1a &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L674'>test-run-error-invalid-integer</a>/0&quot;</span>
<span id="L688" class="LineNr"> 688 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">2</span>/y, <span class="Constant">&quot; ... &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L674'>test-run-error-invalid-integer</a>/1&quot;</span>
<span id="L689" class="LineNr"> 689 </span> <a href='../504test-screen.mu.html#L71'>check-screen-row-in-color</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">0xc</span>/fg=<span class="Special"><a href='trace.mu.html#L197'>error</a></span>, <span class="Constant">3</span>/y, <span class="Constant">&quot; invalid number &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L674'>test-run-error-invalid-integer</a>/2&quot;</span>
<span id="L687" class="LineNr"> 687 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">1</span>/y, <span class="Constant">&quot; 1a &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L674'>test-run-error-invalid-integer</a>/0&quot;</span>
<span id="L688" class="LineNr"> 688 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">2</span>/y, <span class="Constant">&quot; ... &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L674'>test-run-error-invalid-integer</a>/1&quot;</span>
<span id="L689" class="LineNr"> 689 </span> <a href='../504test-screen.mu.html#L71'>check-screen-row-in-color</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">0xc</span>/fg=<span class="Special"><a href='trace.mu.html#L197'>error</a></span>, <span class="Constant">3</span>/y, <span class="Constant">&quot; unbound symbol: 1a &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L674'>test-run-error-invalid-integer</a>/2&quot;</span>
<span id="L690" class="LineNr"> 690 </span><span class="Delimiter">}</span>
<span id="L691" class="LineNr"> 691 </span>
<span id="L692" class="LineNr"> 692 </span><span class="PreProc">fn</span> <span class="muTest"><a href='sandbox.mu.html#L692'>test-run-error-unknown-symbol</a></span> <span class="Delimiter">{</span>
@ -1025,8 +1025,8 @@ if ('onhashchange' in window) {
<span id="L959" class="LineNr"> 959 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">2</span>/y, <span class="Constant">&quot; ||||||&quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L920'>test-run-expand-trace</a>/expand-1/cursor&quot;</span>
<span id="L960" class="LineNr"> 960 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">3</span>/y, <span class="Constant">&quot; ... &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L920'>test-run-expand-trace</a>/expand-2&quot;</span>
<span id="L961" class="LineNr"> 961 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">3</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L920'>test-run-expand-trace</a>/expand-2/cursor&quot;</span>
<span id="L962" class="LineNr"> 962 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">4</span>/y, <span class="Constant">&quot; 1 pars&quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L920'>test-run-expand-trace</a>/expand-2&quot;</span>
<span id="L963" class="LineNr"> 963 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">4</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L920'>test-run-expand-trace</a>/expand-2/cursor&quot;</span>
<span id="L962" class="LineNr"> 962 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">4</span>/y, <span class="Constant">&quot; 1 inse&quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L920'>test-run-expand-trace</a>/expand-3&quot;</span>
<span id="L963" class="LineNr"> 963 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">4</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L920'>test-run-expand-trace</a>/expand-3/cursor&quot;</span>
<span id="L964" class="LineNr"> 964 </span><span class="Delimiter">}</span>
<span id="L965" class="LineNr"> 965 </span>
<span id="L966" class="LineNr"> 966 </span><span class="PreProc">fn</span> <span class="muTest"><a href='sandbox.mu.html#L966'>test-run-can-rerun-when-expanding-trace</a></span> <span class="Delimiter">{</span>
@ -1072,7 +1072,7 @@ if ('onhashchange' in window) {
<span id="L1006" class="LineNr">1006 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">2</span>/y, <span class="Constant">&quot; ||||||&quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L966'>test-run-can-rerun-when-expanding-trace</a>/pre2-1/cursor&quot;</span>
<span id="L1007" class="LineNr">1007 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">3</span>/y, <span class="Constant">&quot; ... &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L966'>test-run-can-rerun-when-expanding-trace</a>/pre2-2&quot;</span>
<span id="L1008" class="LineNr">1008 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">3</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L966'>test-run-can-rerun-when-expanding-trace</a>/pre2-2/cursor&quot;</span>
<span id="L1009" class="LineNr">1009 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">4</span>/y, <span class="Constant">&quot; 1 pars&quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L966'>test-run-can-rerun-when-expanding-trace</a>/pre2-2&quot;</span>
<span id="L1009" class="LineNr">1009 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">4</span>/y, <span class="Constant">&quot; 1 inse&quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L966'>test-run-can-rerun-when-expanding-trace</a>/pre2-2&quot;</span>
<span id="L1010" class="LineNr">1010 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">4</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L966'>test-run-can-rerun-when-expanding-trace</a>/pre2-2/cursor&quot;</span>
<span id="L1011" class="LineNr">1011 </span> <span class="muComment"># move cursor down and expand</span>
<span id="L1012" class="LineNr">1012 </span> <a href='sandbox.mu.html#L453'>edit-sandbox</a> <a href='sandbox.mu.html#L1'>sandbox</a>, <span class="Constant">0x6a</span>/j, <span class="Constant">0</span>/no-globals, <span class="Constant">0</span>/no-disk
@ -1090,111 +1090,139 @@ if ('onhashchange' in window) {
<span id="L1024" class="LineNr">1024 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">3</span>/y, <span class="Constant">&quot; ||||||&quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L966'>test-run-can-rerun-when-expanding-trace</a>/expand-2/cursor&quot;</span>
<span id="L1025" class="LineNr">1025 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">4</span>/y, <span class="Constant">&quot; ... &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L966'>test-run-can-rerun-when-expanding-trace</a>/expand-3&quot;</span>
<span id="L1026" class="LineNr">1026 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">4</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L966'>test-run-can-rerun-when-expanding-trace</a>/expand-3/cursor&quot;</span>
<span id="L1027" class="LineNr">1027 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">5</span>/y, <span class="Constant">&quot; 2 =&gt; 1&quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L966'>test-run-can-rerun-when-expanding-trace</a>/expand-4&quot;</span>
<span id="L1027" class="LineNr">1027 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">5</span>/y, <span class="Constant">&quot; 2 next&quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L966'>test-run-can-rerun-when-expanding-trace</a>/expand-4&quot;</span>
<span id="L1028" class="LineNr">1028 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">5</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L966'>test-run-can-rerun-when-expanding-trace</a>/expand-4/cursor&quot;</span>
<span id="L1029" class="LineNr">1029 </span><span class="Delimiter">}</span>
<span id="L1030" class="LineNr">1030 </span>
<span id="L1031" class="LineNr">1031 </span><span class="PreProc">fn</span> <span class="muTest"><a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a></span> <span class="Delimiter">{</span>
<span id="L1032" class="LineNr">1032 </span> <span class="PreProc">var</span> sandbox-storage: <a href='sandbox.mu.html#L1'>sandbox</a>
<span id="L1033" class="LineNr">1033 </span> <span class="PreProc">var</span> <a href='sandbox.mu.html#L1'>sandbox</a>/<span class="muRegEsi">esi</span>: (addr <a href='sandbox.mu.html#L1'>sandbox</a>) <span class="Special">&lt;-</span> address sandbox-storage
<span id="L1034" class="LineNr">1034 </span> <span class="muComment"># initialize sandbox with a max-depth of 3</span>
<span id="L1035" class="LineNr">1035 </span> <a href='sandbox.mu.html#L41'>initialize-sandbox-with</a> <a href='sandbox.mu.html#L1'>sandbox</a>, <span class="Constant">&quot;7&quot;</span>
<span id="L1036" class="LineNr">1036 </span> <span class="muComment"># eval</span>
<span id="L1037" class="LineNr">1037 </span> <a href='sandbox.mu.html#L453'>edit-sandbox</a> <a href='sandbox.mu.html#L1'>sandbox</a>, <span class="Constant">0x13</span>/ctrl-s, <span class="Constant">0</span>/no-globals, <span class="Constant">0</span>/no-disk
<span id="L1038" class="LineNr">1038 </span> <span class="muComment"># setup: screen</span>
<span id="L1039" class="LineNr">1039 </span> <span class="PreProc">var</span> screen-on-stack: <a href='../500fake-screen.mu.html#L14'>screen</a>
<span id="L1040" class="LineNr">1040 </span> <span class="PreProc">var</span> <a href='../500fake-screen.mu.html#L14'>screen</a>/<span class="muRegEdi">edi</span>: (addr <a href='../500fake-screen.mu.html#L14'>screen</a>) <span class="Special">&lt;-</span> address screen-on-stack
<span id="L1041" class="LineNr">1041 </span> <a href='../500fake-screen.mu.html#L33'>initialize-screen</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">0x80</span>/width, <span class="Constant">0x10</span>/height, <span class="Constant">0</span>/no-pixel-graphics
<span id="L1042" class="LineNr">1042 </span> <span class="muComment">#</span>
<span id="L1043" class="LineNr">1043 </span> <a href='sandbox.mu.html#L81'>render-sandbox</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <a href='sandbox.mu.html#L1'>sandbox</a>, <span class="Constant">0</span>/x, <span class="Constant">0</span>/y, <span class="Constant">0x80</span>/width, <span class="Constant">0x10</span>/height, <span class="Constant">1</span>/show-cursor
<span id="L1044" class="LineNr">1044 </span> <span class="muComment"># skip one line of padding</span>
<span id="L1045" class="LineNr">1045 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">1</span>/y, <span class="Constant">&quot; 7 &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/pre0-0&quot;</span>
<span id="L1046" class="LineNr">1046 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">1</span>/y, <span class="Constant">&quot; | &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/pre0-0/cursor&quot;</span>
<span id="L1047" class="LineNr">1047 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">2</span>/y, <span class="Constant">&quot; ... &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/pre0-1&quot;</span>
<span id="L1048" class="LineNr">1048 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">2</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/pre0-1/cursor&quot;</span>
<span id="L1049" class="LineNr">1049 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">3</span>/y, <span class="Constant">&quot; =&gt; 7 &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/pre0-2&quot;</span>
<span id="L1050" class="LineNr">1050 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">3</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/pre0-2/cursor&quot;</span>
<span id="L1051" class="LineNr">1051 </span> <span class="muComment"># move cursor into trace</span>
<span id="L1052" class="LineNr">1052 </span> <a href='sandbox.mu.html#L453'>edit-sandbox</a> <a href='sandbox.mu.html#L1'>sandbox</a>, <span class="Constant">0xd</span>/ctrl-m, <span class="Constant">0</span>/no-globals, <span class="Constant">0</span>/no-disk
<span id="L1053" class="LineNr">1053 </span> <a href='sandbox.mu.html#L81'>render-sandbox</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <a href='sandbox.mu.html#L1'>sandbox</a>, <span class="Constant">0</span>/x, <span class="Constant">0</span>/y, <span class="Constant">0x80</span>/width, <span class="Constant">0x10</span>/height, <span class="Constant">1</span>/show-cursor
<span id="L1054" class="LineNr">1054 </span> <span class="muComment">#</span>
<span id="L1055" class="LineNr">1055 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">1</span>/y, <span class="Constant">&quot; 7 &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/pre1-0&quot;</span>
<span id="L1056" class="LineNr">1056 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">1</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/pre1-0/cursor&quot;</span>
<span id="L1057" class="LineNr">1057 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">2</span>/y, <span class="Constant">&quot; ... &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/pre1-1&quot;</span>
<span id="L1058" class="LineNr">1058 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">2</span>/y, <span class="Constant">&quot; ||| &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/pre1-1/cursor&quot;</span>
<span id="L1059" class="LineNr">1059 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">3</span>/y, <span class="Constant">&quot; =&gt; 7 &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/pre1-2&quot;</span>
<span id="L1060" class="LineNr">1060 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">3</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/pre1-2/cursor&quot;</span>
<span id="L1061" class="LineNr">1061 </span> <span class="muComment"># expand</span>
<span id="L1062" class="LineNr">1062 </span> <a href='sandbox.mu.html#L453'>edit-sandbox</a> <a href='sandbox.mu.html#L1'>sandbox</a>, <span class="Constant">0xa</span>/newline, <span class="Constant">0</span>/no-globals, <span class="Constant">0</span>/no-disk
<span id="L1063" class="LineNr">1063 </span> <a href='../500fake-screen.mu.html#L251'>clear-screen</a> <a href='../500fake-screen.mu.html#L14'>screen</a>
<span id="L1064" class="LineNr">1064 </span> <a href='sandbox.mu.html#L81'>render-sandbox</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <a href='sandbox.mu.html#L1'>sandbox</a>, <span class="Constant">0</span>/x, <span class="Constant">0</span>/y, <span class="Constant">0x80</span>/width, <span class="Constant">0x10</span>/height, <span class="Constant">1</span>/show-cursor
<span id="L1065" class="LineNr">1065 </span> <span class="muComment">#</span>
<span id="L1066" class="LineNr">1066 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">1</span>/y, <span class="Constant">&quot; 7 &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/pre2-0&quot;</span>
<span id="L1067" class="LineNr">1067 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">1</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/pre2-0/cursor&quot;</span>
<span id="L1068" class="LineNr">1068 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">2</span>/y, <span class="Constant">&quot; 1 <a href='tokenize.mu.html#L5'>tokenize</a> &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/pre2-1&quot;</span>
<span id="L1069" class="LineNr">1069 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">2</span>/y, <span class="Constant">&quot; |||||||||| &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/pre2-1/cursor&quot;</span>
<span id="L1070" class="LineNr">1070 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">3</span>/y, <span class="Constant">&quot; ... &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/pre2-2&quot;</span>
<span id="L1071" class="LineNr">1071 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">3</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/pre2-2/cursor&quot;</span>
<span id="L1072" class="LineNr">1072 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">4</span>/y, <span class="Constant">&quot; 1 parse &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/pre2-3&quot;</span>
<span id="L1073" class="LineNr">1073 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">4</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/pre2-3/cursor&quot;</span>
<span id="L1074" class="LineNr">1074 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">5</span>/y, <span class="Constant">&quot; ... &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/pre2-4&quot;</span>
<span id="L1075" class="LineNr">1075 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">5</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/pre2-4/cursor&quot;</span>
<span id="L1076" class="LineNr">1076 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">6</span>/y, <span class="Constant">&quot; 1 <a href='macroexpand.mu.html#L1'>macroexpand</a> 7 &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/pre2-5&quot;</span>
<span id="L1077" class="LineNr">1077 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">6</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/pre2-5/cursor&quot;</span>
<span id="L1078" class="LineNr">1078 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/y, <span class="Constant">&quot; ... &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/pre2-6&quot;</span>
<span id="L1079" class="LineNr">1079 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">7</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/pre2-6/cursor&quot;</span>
<span id="L1080" class="LineNr">1080 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">8</span>/y, <span class="Constant">&quot; 1 =&gt; 7 &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/pre2-7&quot;</span>
<span id="L1081" class="LineNr">1081 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">8</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/pre2-7/cursor&quot;</span>
<span id="L1082" class="LineNr">1082 </span> <span class="muComment"># move cursor down below the macroexpand line and expand</span>
<span id="L1083" class="LineNr">1083 </span> <a href='sandbox.mu.html#L453'>edit-sandbox</a> <a href='sandbox.mu.html#L1'>sandbox</a>, <span class="Constant">0x6a</span>/j, <span class="Constant">0</span>/no-globals, <span class="Constant">0</span>/no-disk
<span id="L1084" class="LineNr">1084 </span> <a href='sandbox.mu.html#L81'>render-sandbox</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <a href='sandbox.mu.html#L1'>sandbox</a>, <span class="Constant">0</span>/x, <span class="Constant">0</span>/y, <span class="Constant">0x80</span>/width, <span class="Constant">0x10</span>/height, <span class="Constant">1</span>/show-cursor
<span id="L1085" class="LineNr">1085 </span> <a href='sandbox.mu.html#L453'>edit-sandbox</a> <a href='sandbox.mu.html#L1'>sandbox</a>, <span class="Constant">0x6a</span>/j, <span class="Constant">0</span>/no-globals, <span class="Constant">0</span>/no-disk
<span id="L1086" class="LineNr">1086 </span> <a href='sandbox.mu.html#L81'>render-sandbox</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <a href='sandbox.mu.html#L1'>sandbox</a>, <span class="Constant">0</span>/x, <span class="Constant">0</span>/y, <span class="Constant">0x80</span>/width, <span class="Constant">0x10</span>/height, <span class="Constant">1</span>/show-cursor
<span id="L1087" class="LineNr">1087 </span> <a href='sandbox.mu.html#L453'>edit-sandbox</a> <a href='sandbox.mu.html#L1'>sandbox</a>, <span class="Constant">0x6a</span>/j, <span class="Constant">0</span>/no-globals, <span class="Constant">0</span>/no-disk
<span id="L1088" class="LineNr">1088 </span> <a href='sandbox.mu.html#L81'>render-sandbox</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <a href='sandbox.mu.html#L1'>sandbox</a>, <span class="Constant">0</span>/x, <span class="Constant">0</span>/y, <span class="Constant">0x80</span>/width, <span class="Constant">0x10</span>/height, <span class="Constant">1</span>/show-cursor
<span id="L1089" class="LineNr">1089 </span> <a href='sandbox.mu.html#L453'>edit-sandbox</a> <a href='sandbox.mu.html#L1'>sandbox</a>, <span class="Constant">0x6a</span>/j, <span class="Constant">0</span>/no-globals, <span class="Constant">0</span>/no-disk
<span id="L1090" class="LineNr">1090 </span> <a href='sandbox.mu.html#L81'>render-sandbox</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <a href='sandbox.mu.html#L1'>sandbox</a>, <span class="Constant">0</span>/x, <span class="Constant">0</span>/y, <span class="Constant">0x80</span>/width, <span class="Constant">0x10</span>/height, <span class="Constant">1</span>/show-cursor
<span id="L1091" class="LineNr">1091 </span> <a href='sandbox.mu.html#L453'>edit-sandbox</a> <a href='sandbox.mu.html#L1'>sandbox</a>, <span class="Constant">0x6a</span>/j, <span class="Constant">0</span>/no-globals, <span class="Constant">0</span>/no-disk
<span id="L1092" class="LineNr">1092 </span> <a href='sandbox.mu.html#L81'>render-sandbox</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <a href='sandbox.mu.html#L1'>sandbox</a>, <span class="Constant">0</span>/x, <span class="Constant">0</span>/y, <span class="Constant">0x80</span>/width, <span class="Constant">0x10</span>/height, <span class="Constant">1</span>/show-cursor
<span id="L1093" class="LineNr">1093 </span> <span class="muComment">#</span>
<span id="L1094" class="LineNr">1094 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">1</span>/y, <span class="Constant">&quot; 7 &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/pre3-0&quot;</span>
<span id="L1095" class="LineNr">1095 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">1</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/pre3-0/cursor&quot;</span>
<span id="L1096" class="LineNr">1096 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">2</span>/y, <span class="Constant">&quot; 1 <a href='tokenize.mu.html#L5'>tokenize</a> &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/pre3-1&quot;</span>
<span id="L1097" class="LineNr">1097 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">2</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/pre3-1/cursor&quot;</span>
<span id="L1098" class="LineNr">1098 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">3</span>/y, <span class="Constant">&quot; ... &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/pre3-2&quot;</span>
<span id="L1099" class="LineNr">1099 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">3</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/pre3-2/cursor&quot;</span>
<span id="L1100" class="LineNr">1100 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">4</span>/y, <span class="Constant">&quot; 1 parse &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/pre3-3&quot;</span>
<span id="L1101" class="LineNr">1101 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">4</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/pre3-3/cursor&quot;</span>
<span id="L1102" class="LineNr">1102 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">5</span>/y, <span class="Constant">&quot; ... &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/pre3-4&quot;</span>
<span id="L1103" class="LineNr">1103 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">5</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/pre3-4/cursor&quot;</span>
<span id="L1104" class="LineNr">1104 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">6</span>/y, <span class="Constant">&quot; 1 <a href='macroexpand.mu.html#L1'>macroexpand</a> 7 &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/pre3-5&quot;</span>
<span id="L1105" class="LineNr">1105 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">6</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/pre3-5/cursor&quot;</span>
<span id="L1106" class="LineNr">1106 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/y, <span class="Constant">&quot; ... &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/pre3-6&quot;</span>
<span id="L1107" class="LineNr">1107 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">7</span>/y, <span class="Constant">&quot; ||| &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/pre3-6/cursor&quot;</span>
<span id="L1108" class="LineNr">1108 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">8</span>/y, <span class="Constant">&quot; 1 =&gt; 7 &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/pre3-7&quot;</span>
<span id="L1109" class="LineNr">1109 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">8</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/pre3-7/cursor&quot;</span>
<span id="L1110" class="LineNr">1110 </span> <span class="muComment"># expand</span>
<span id="L1111" class="LineNr">1111 </span> <a href='sandbox.mu.html#L453'>edit-sandbox</a> <a href='sandbox.mu.html#L1'>sandbox</a>, <span class="Constant">0xa</span>/newline, <span class="Constant">0</span>/no-globals, <span class="Constant">0</span>/no-disk
<span id="L1112" class="LineNr">1112 </span> <a href='../500fake-screen.mu.html#L251'>clear-screen</a> <a href='../500fake-screen.mu.html#L14'>screen</a>
<span id="L1113" class="LineNr">1113 </span> <a href='sandbox.mu.html#L81'>render-sandbox</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <a href='sandbox.mu.html#L1'>sandbox</a>, <span class="Constant">0</span>/x, <span class="Constant">0</span>/y, <span class="Constant">0x80</span>/width, <span class="Constant">0x10</span>/height, <span class="Constant">1</span>/show-cursor
<span id="L1114" class="LineNr">1114 </span> <span class="muComment"># cursor line is expanded</span>
<span id="L1115" class="LineNr">1115 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">1</span>/y, <span class="Constant">&quot; 7 &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/expand-0&quot;</span>
<span id="L1116" class="LineNr">1116 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">1</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/expand-0/cursor&quot;</span>
<span id="L1117" class="LineNr">1117 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">2</span>/y, <span class="Constant">&quot; 1 <a href='tokenize.mu.html#L5'>tokenize</a> &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/expand-1&quot;</span>
<span id="L1118" class="LineNr">1118 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">2</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/expand-1/cursor&quot;</span>
<span id="L1119" class="LineNr">1119 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">3</span>/y, <span class="Constant">&quot; ... &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/expand-2&quot;</span>
<span id="L1120" class="LineNr">1120 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">3</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/expand-2/cursor&quot;</span>
<span id="L1121" class="LineNr">1121 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">4</span>/y, <span class="Constant">&quot; 1 parse &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/expand-3&quot;</span>
<span id="L1122" class="LineNr">1122 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">4</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/expand-3/cursor&quot;</span>
<span id="L1123" class="LineNr">1123 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">5</span>/y, <span class="Constant">&quot; ... &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/expand-4&quot;</span>
<span id="L1124" class="LineNr">1124 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">5</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/expand-4/cursor&quot;</span>
<span id="L1125" class="LineNr">1125 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">6</span>/y, <span class="Constant">&quot; 1 <a href='macroexpand.mu.html#L1'>macroexpand</a> 7 &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/expand-5&quot;</span>
<span id="L1126" class="LineNr">1126 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">6</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/expand-5/cursor&quot;</span>
<span id="L1127" class="LineNr">1127 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/y, <span class="Constant">&quot; 2 <a href='macroexpand.mu.html#L46'>macroexpand-iter</a> 7 &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/expand-6&quot;</span>
<span id="L1128" class="LineNr">1128 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">7</span>/y, <span class="Constant">&quot; |||||||||||||||||||| &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/expand-6/cursor&quot;</span>
<span id="L1129" class="LineNr">1129 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">8</span>/y, <span class="Constant">&quot; ... &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/expand-7&quot;</span>
<span id="L1130" class="LineNr">1130 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">8</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1031'>test-run-preserves-trace-view-on-rerun</a>/expand-7/cursor&quot;</span>
<span id="L1131" class="LineNr">1131 </span><span class="Delimiter">}</span>
<span id="L1029" class="LineNr">1029 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">6</span>/y, <span class="Constant">&quot; ... &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L966'>test-run-can-rerun-when-expanding-trace</a>/expand-5&quot;</span>
<span id="L1030" class="LineNr">1030 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">6</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L966'>test-run-can-rerun-when-expanding-trace</a>/expand-5/cursor&quot;</span>
<span id="L1031" class="LineNr">1031 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/y, <span class="Constant">&quot; 2 =&gt; 1&quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L966'>test-run-can-rerun-when-expanding-trace</a>/expand-6&quot;</span>
<span id="L1032" class="LineNr">1032 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">7</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L966'>test-run-can-rerun-when-expanding-trace</a>/expand-6/cursor&quot;</span>
<span id="L1033" class="LineNr">1033 </span><span class="Delimiter">}</span>
<span id="L1034" class="LineNr">1034 </span>
<span id="L1035" class="LineNr">1035 </span><span class="PreProc">fn</span> <span class="muTest"><a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a></span> <span class="Delimiter">{</span>
<span id="L1036" class="LineNr">1036 </span> <span class="PreProc">var</span> sandbox-storage: <a href='sandbox.mu.html#L1'>sandbox</a>
<span id="L1037" class="LineNr">1037 </span> <span class="PreProc">var</span> <a href='sandbox.mu.html#L1'>sandbox</a>/<span class="muRegEsi">esi</span>: (addr <a href='sandbox.mu.html#L1'>sandbox</a>) <span class="Special">&lt;-</span> address sandbox-storage
<span id="L1038" class="LineNr">1038 </span> <span class="muComment"># initialize sandbox with a max-depth of 3</span>
<span id="L1039" class="LineNr">1039 </span> <a href='sandbox.mu.html#L41'>initialize-sandbox-with</a> <a href='sandbox.mu.html#L1'>sandbox</a>, <span class="Constant">&quot;7&quot;</span>
<span id="L1040" class="LineNr">1040 </span> <span class="muComment"># eval</span>
<span id="L1041" class="LineNr">1041 </span> <a href='sandbox.mu.html#L453'>edit-sandbox</a> <a href='sandbox.mu.html#L1'>sandbox</a>, <span class="Constant">0x13</span>/ctrl-s, <span class="Constant">0</span>/no-globals, <span class="Constant">0</span>/no-disk
<span id="L1042" class="LineNr">1042 </span> <span class="muComment"># setup: screen</span>
<span id="L1043" class="LineNr">1043 </span> <span class="PreProc">var</span> screen-on-stack: <a href='../500fake-screen.mu.html#L14'>screen</a>
<span id="L1044" class="LineNr">1044 </span> <span class="PreProc">var</span> <a href='../500fake-screen.mu.html#L14'>screen</a>/<span class="muRegEdi">edi</span>: (addr <a href='../500fake-screen.mu.html#L14'>screen</a>) <span class="Special">&lt;-</span> address screen-on-stack
<span id="L1045" class="LineNr">1045 </span> <a href='../500fake-screen.mu.html#L33'>initialize-screen</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">0x80</span>/width, <span class="Constant">0x10</span>/height, <span class="Constant">0</span>/no-pixel-graphics
<span id="L1046" class="LineNr">1046 </span> <span class="muComment">#</span>
<span id="L1047" class="LineNr">1047 </span> <a href='sandbox.mu.html#L81'>render-sandbox</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <a href='sandbox.mu.html#L1'>sandbox</a>, <span class="Constant">0</span>/x, <span class="Constant">0</span>/y, <span class="Constant">0x80</span>/width, <span class="Constant">0x10</span>/height, <span class="Constant">1</span>/show-cursor
<span id="L1048" class="LineNr">1048 </span> <span class="muComment"># skip one line of padding</span>
<span id="L1049" class="LineNr">1049 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">1</span>/y, <span class="Constant">&quot; 7 &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre0-0&quot;</span>
<span id="L1050" class="LineNr">1050 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">1</span>/y, <span class="Constant">&quot; | &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre0-0/cursor&quot;</span>
<span id="L1051" class="LineNr">1051 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">2</span>/y, <span class="Constant">&quot; ... &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre0-1&quot;</span>
<span id="L1052" class="LineNr">1052 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">2</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre0-1/cursor&quot;</span>
<span id="L1053" class="LineNr">1053 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">3</span>/y, <span class="Constant">&quot; =&gt; 7 &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre0-2&quot;</span>
<span id="L1054" class="LineNr">1054 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">3</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre0-2/cursor&quot;</span>
<span id="L1055" class="LineNr">1055 </span> <span class="muComment"># move cursor into trace</span>
<span id="L1056" class="LineNr">1056 </span> <a href='sandbox.mu.html#L453'>edit-sandbox</a> <a href='sandbox.mu.html#L1'>sandbox</a>, <span class="Constant">0xd</span>/ctrl-m, <span class="Constant">0</span>/no-globals, <span class="Constant">0</span>/no-disk
<span id="L1057" class="LineNr">1057 </span> <a href='sandbox.mu.html#L81'>render-sandbox</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <a href='sandbox.mu.html#L1'>sandbox</a>, <span class="Constant">0</span>/x, <span class="Constant">0</span>/y, <span class="Constant">0x80</span>/width, <span class="Constant">0x10</span>/height, <span class="Constant">1</span>/show-cursor
<span id="L1058" class="LineNr">1058 </span> <span class="muComment">#</span>
<span id="L1059" class="LineNr">1059 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">1</span>/y, <span class="Constant">&quot; 7 &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre1-0&quot;</span>
<span id="L1060" class="LineNr">1060 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">1</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre1-0/cursor&quot;</span>
<span id="L1061" class="LineNr">1061 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">2</span>/y, <span class="Constant">&quot; ... &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre1-1&quot;</span>
<span id="L1062" class="LineNr">1062 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">2</span>/y, <span class="Constant">&quot; ||| &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre1-1/cursor&quot;</span>
<span id="L1063" class="LineNr">1063 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">3</span>/y, <span class="Constant">&quot; =&gt; 7 &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre1-2&quot;</span>
<span id="L1064" class="LineNr">1064 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">3</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre1-2/cursor&quot;</span>
<span id="L1065" class="LineNr">1065 </span> <span class="muComment"># expand</span>
<span id="L1066" class="LineNr">1066 </span> <a href='sandbox.mu.html#L453'>edit-sandbox</a> <a href='sandbox.mu.html#L1'>sandbox</a>, <span class="Constant">0xa</span>/newline, <span class="Constant">0</span>/no-globals, <span class="Constant">0</span>/no-disk
<span id="L1067" class="LineNr">1067 </span> <a href='../500fake-screen.mu.html#L251'>clear-screen</a> <a href='../500fake-screen.mu.html#L14'>screen</a>
<span id="L1068" class="LineNr">1068 </span> <a href='sandbox.mu.html#L81'>render-sandbox</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <a href='sandbox.mu.html#L1'>sandbox</a>, <span class="Constant">0</span>/x, <span class="Constant">0</span>/y, <span class="Constant">0x80</span>/width, <span class="Constant">0x10</span>/height, <span class="Constant">1</span>/show-cursor
<span id="L1069" class="LineNr">1069 </span> <span class="muComment">#</span>
<span id="L1070" class="LineNr">1070 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">1</span>/y, <span class="Constant">&quot; 7 &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre2-0&quot;</span>
<span id="L1071" class="LineNr">1071 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">1</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre2-0/cursor&quot;</span>
<span id="L1072" class="LineNr">1072 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">2</span>/y, <span class="Constant">&quot; 1 <a href='tokenize.mu.html#L13'>tokenize</a> &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre2-1&quot;</span>
<span id="L1073" class="LineNr">1073 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">2</span>/y, <span class="Constant">&quot; |||||||||| &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre2-1/cursor&quot;</span>
<span id="L1074" class="LineNr">1074 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">3</span>/y, <span class="Constant">&quot; ... &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre2-2&quot;</span>
<span id="L1075" class="LineNr">1075 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">3</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre2-2/cursor&quot;</span>
<span id="L1076" class="LineNr">1076 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">4</span>/y, <span class="Constant">&quot; 1 insert parens &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre2-3&quot;</span>
<span id="L1077" class="LineNr">1077 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">4</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre2-3/cursor&quot;</span>
<span id="L1078" class="LineNr">1078 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">5</span>/y, <span class="Constant">&quot; 1 parse &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre2-4&quot;</span>
<span id="L1079" class="LineNr">1079 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">5</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre2-4/cursor&quot;</span>
<span id="L1080" class="LineNr">1080 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">6</span>/y, <span class="Constant">&quot; ... &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre2-5&quot;</span>
<span id="L1081" class="LineNr">1081 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">6</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre2-5/cursor&quot;</span>
<span id="L1082" class="LineNr">1082 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/y, <span class="Constant">&quot; 1 transform infix &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre2-6&quot;</span>
<span id="L1083" class="LineNr">1083 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">7</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre2-6/cursor&quot;</span>
<span id="L1084" class="LineNr">1084 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">8</span>/y, <span class="Constant">&quot; ... &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre2-7&quot;</span>
<span id="L1085" class="LineNr">1085 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">8</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre2-7/cursor&quot;</span>
<span id="L1086" class="LineNr">1086 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">9</span>/y, <span class="Constant">&quot; 1 <a href='macroexpand.mu.html#L1'>macroexpand</a> 7 &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre2-8&quot;</span>
<span id="L1087" class="LineNr">1087 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">9</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre2-8/cursor&quot;</span>
<span id="L1088" class="LineNr">1088 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">0xa</span>/y, <span class="Constant">&quot; ... &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre2-9&quot;</span>
<span id="L1089" class="LineNr">1089 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">0xa</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre2-9/cursor&quot;</span>
<span id="L1090" class="LineNr">1090 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">0xb</span>/y, <span class="Constant">&quot; 1 =&gt; 7 &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre2-10&quot;</span>
<span id="L1091" class="LineNr">1091 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">0xb</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre2-10/cursor&quot;</span>
<span id="L1092" class="LineNr">1092 </span> <span class="muComment"># move cursor down below the macroexpand line and expand</span>
<span id="L1093" class="LineNr">1093 </span> <a href='sandbox.mu.html#L453'>edit-sandbox</a> <a href='sandbox.mu.html#L1'>sandbox</a>, <span class="Constant">0x6a</span>/j, <span class="Constant">0</span>/no-globals, <span class="Constant">0</span>/no-disk
<span id="L1094" class="LineNr">1094 </span> <a href='sandbox.mu.html#L81'>render-sandbox</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <a href='sandbox.mu.html#L1'>sandbox</a>, <span class="Constant">0</span>/x, <span class="Constant">0</span>/y, <span class="Constant">0x80</span>/width, <span class="Constant">0x10</span>/height, <span class="Constant">1</span>/show-cursor
<span id="L1095" class="LineNr">1095 </span> <a href='sandbox.mu.html#L453'>edit-sandbox</a> <a href='sandbox.mu.html#L1'>sandbox</a>, <span class="Constant">0x6a</span>/j, <span class="Constant">0</span>/no-globals, <span class="Constant">0</span>/no-disk
<span id="L1096" class="LineNr">1096 </span> <a href='sandbox.mu.html#L81'>render-sandbox</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <a href='sandbox.mu.html#L1'>sandbox</a>, <span class="Constant">0</span>/x, <span class="Constant">0</span>/y, <span class="Constant">0x80</span>/width, <span class="Constant">0x10</span>/height, <span class="Constant">1</span>/show-cursor
<span id="L1097" class="LineNr">1097 </span> <a href='sandbox.mu.html#L453'>edit-sandbox</a> <a href='sandbox.mu.html#L1'>sandbox</a>, <span class="Constant">0x6a</span>/j, <span class="Constant">0</span>/no-globals, <span class="Constant">0</span>/no-disk
<span id="L1098" class="LineNr">1098 </span> <a href='sandbox.mu.html#L81'>render-sandbox</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <a href='sandbox.mu.html#L1'>sandbox</a>, <span class="Constant">0</span>/x, <span class="Constant">0</span>/y, <span class="Constant">0x80</span>/width, <span class="Constant">0x10</span>/height, <span class="Constant">1</span>/show-cursor
<span id="L1099" class="LineNr">1099 </span> <a href='sandbox.mu.html#L453'>edit-sandbox</a> <a href='sandbox.mu.html#L1'>sandbox</a>, <span class="Constant">0x6a</span>/j, <span class="Constant">0</span>/no-globals, <span class="Constant">0</span>/no-disk
<span id="L1100" class="LineNr">1100 </span> <a href='sandbox.mu.html#L81'>render-sandbox</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <a href='sandbox.mu.html#L1'>sandbox</a>, <span class="Constant">0</span>/x, <span class="Constant">0</span>/y, <span class="Constant">0x80</span>/width, <span class="Constant">0x10</span>/height, <span class="Constant">1</span>/show-cursor
<span id="L1101" class="LineNr">1101 </span> <a href='sandbox.mu.html#L453'>edit-sandbox</a> <a href='sandbox.mu.html#L1'>sandbox</a>, <span class="Constant">0x6a</span>/j, <span class="Constant">0</span>/no-globals, <span class="Constant">0</span>/no-disk
<span id="L1102" class="LineNr">1102 </span> <a href='sandbox.mu.html#L81'>render-sandbox</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <a href='sandbox.mu.html#L1'>sandbox</a>, <span class="Constant">0</span>/x, <span class="Constant">0</span>/y, <span class="Constant">0x80</span>/width, <span class="Constant">0x10</span>/height, <span class="Constant">1</span>/show-cursor
<span id="L1103" class="LineNr">1103 </span> <a href='sandbox.mu.html#L453'>edit-sandbox</a> <a href='sandbox.mu.html#L1'>sandbox</a>, <span class="Constant">0x6a</span>/j, <span class="Constant">0</span>/no-globals, <span class="Constant">0</span>/no-disk
<span id="L1104" class="LineNr">1104 </span> <a href='sandbox.mu.html#L81'>render-sandbox</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <a href='sandbox.mu.html#L1'>sandbox</a>, <span class="Constant">0</span>/x, <span class="Constant">0</span>/y, <span class="Constant">0x80</span>/width, <span class="Constant">0x10</span>/height, <span class="Constant">1</span>/show-cursor
<span id="L1105" class="LineNr">1105 </span> <a href='sandbox.mu.html#L453'>edit-sandbox</a> <a href='sandbox.mu.html#L1'>sandbox</a>, <span class="Constant">0x6a</span>/j, <span class="Constant">0</span>/no-globals, <span class="Constant">0</span>/no-disk
<span id="L1106" class="LineNr">1106 </span> <a href='sandbox.mu.html#L81'>render-sandbox</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <a href='sandbox.mu.html#L1'>sandbox</a>, <span class="Constant">0</span>/x, <span class="Constant">0</span>/y, <span class="Constant">0x80</span>/width, <span class="Constant">0x10</span>/height, <span class="Constant">1</span>/show-cursor
<span id="L1107" class="LineNr">1107 </span> <a href='sandbox.mu.html#L453'>edit-sandbox</a> <a href='sandbox.mu.html#L1'>sandbox</a>, <span class="Constant">0x6a</span>/j, <span class="Constant">0</span>/no-globals, <span class="Constant">0</span>/no-disk
<span id="L1108" class="LineNr">1108 </span> <a href='sandbox.mu.html#L81'>render-sandbox</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <a href='sandbox.mu.html#L1'>sandbox</a>, <span class="Constant">0</span>/x, <span class="Constant">0</span>/y, <span class="Constant">0x80</span>/width, <span class="Constant">0x10</span>/height, <span class="Constant">1</span>/show-cursor
<span id="L1109" class="LineNr">1109 </span> <span class="muComment">#</span>
<span id="L1110" class="LineNr">1110 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">1</span>/y, <span class="Constant">&quot; 7 &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre3-0&quot;</span>
<span id="L1111" class="LineNr">1111 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">1</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre3-0/cursor&quot;</span>
<span id="L1112" class="LineNr">1112 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">2</span>/y, <span class="Constant">&quot; 1 <a href='tokenize.mu.html#L13'>tokenize</a> &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre3-1&quot;</span>
<span id="L1113" class="LineNr">1113 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">2</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre3-1/cursor&quot;</span>
<span id="L1114" class="LineNr">1114 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">3</span>/y, <span class="Constant">&quot; ... &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre3-2&quot;</span>
<span id="L1115" class="LineNr">1115 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">3</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre3-2/cursor&quot;</span>
<span id="L1116" class="LineNr">1116 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">4</span>/y, <span class="Constant">&quot; 1 insert parens &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre3-3&quot;</span>
<span id="L1117" class="LineNr">1117 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">4</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre3-3/cursor&quot;</span>
<span id="L1118" class="LineNr">1118 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">5</span>/y, <span class="Constant">&quot; 1 parse &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre3-4&quot;</span>
<span id="L1119" class="LineNr">1119 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">5</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre3-4/cursor&quot;</span>
<span id="L1120" class="LineNr">1120 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">6</span>/y, <span class="Constant">&quot; ... &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre3-5&quot;</span>
<span id="L1121" class="LineNr">1121 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">6</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre3-5/cursor&quot;</span>
<span id="L1122" class="LineNr">1122 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/y, <span class="Constant">&quot; 1 transform infix &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre3-6&quot;</span>
<span id="L1123" class="LineNr">1123 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">7</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre3-6/cursor&quot;</span>
<span id="L1124" class="LineNr">1124 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">8</span>/y, <span class="Constant">&quot; ... &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre3-7&quot;</span>
<span id="L1125" class="LineNr">1125 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">8</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre3-7/cursor&quot;</span>
<span id="L1126" class="LineNr">1126 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">9</span>/y, <span class="Constant">&quot; 1 <a href='macroexpand.mu.html#L1'>macroexpand</a> 7 &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre3-8&quot;</span>
<span id="L1127" class="LineNr">1127 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">9</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre3-8/cursor&quot;</span>
<span id="L1128" class="LineNr">1128 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">0xa</span>/y, <span class="Constant">&quot; ... &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre3-9&quot;</span>
<span id="L1129" class="LineNr">1129 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">0xa</span>/y, <span class="Constant">&quot; ||| &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre3-9/cursor&quot;</span>
<span id="L1130" class="LineNr">1130 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">0xb</span>/y, <span class="Constant">&quot; 1 =&gt; 7 &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre3-10&quot;</span>
<span id="L1131" class="LineNr">1131 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">0xb</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/pre3-10/cursor&quot;</span>
<span id="L1132" class="LineNr">1132 </span> <span class="muComment"># expand</span>
<span id="L1133" class="LineNr">1133 </span> <a href='sandbox.mu.html#L453'>edit-sandbox</a> <a href='sandbox.mu.html#L1'>sandbox</a>, <span class="Constant">0xa</span>/newline, <span class="Constant">0</span>/no-globals, <span class="Constant">0</span>/no-disk
<span id="L1134" class="LineNr">1134 </span> <a href='../500fake-screen.mu.html#L251'>clear-screen</a> <a href='../500fake-screen.mu.html#L14'>screen</a>
<span id="L1135" class="LineNr">1135 </span> <a href='sandbox.mu.html#L81'>render-sandbox</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <a href='sandbox.mu.html#L1'>sandbox</a>, <span class="Constant">0</span>/x, <span class="Constant">0</span>/y, <span class="Constant">0x80</span>/width, <span class="Constant">0x10</span>/height, <span class="Constant">1</span>/show-cursor
<span id="L1136" class="LineNr">1136 </span> <span class="muComment"># cursor line is expanded</span>
<span id="L1137" class="LineNr">1137 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">1</span>/y, <span class="Constant">&quot; 7 &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/expand-0&quot;</span>
<span id="L1138" class="LineNr">1138 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">1</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/expand-0/cursor&quot;</span>
<span id="L1139" class="LineNr">1139 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">2</span>/y, <span class="Constant">&quot; 1 <a href='tokenize.mu.html#L13'>tokenize</a> &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/expand-1&quot;</span>
<span id="L1140" class="LineNr">1140 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">2</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/expand-1/cursor&quot;</span>
<span id="L1141" class="LineNr">1141 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">3</span>/y, <span class="Constant">&quot; ... &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/expand-2&quot;</span>
<span id="L1142" class="LineNr">1142 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">3</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/expand-2/cursor&quot;</span>
<span id="L1143" class="LineNr">1143 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">4</span>/y, <span class="Constant">&quot; 1 insert parens &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/expand-3&quot;</span>
<span id="L1144" class="LineNr">1144 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">4</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/expand-3/cursor&quot;</span>
<span id="L1145" class="LineNr">1145 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">5</span>/y, <span class="Constant">&quot; 1 parse &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/expand-4&quot;</span>
<span id="L1146" class="LineNr">1146 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">5</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/expand-4/cursor&quot;</span>
<span id="L1147" class="LineNr">1147 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">6</span>/y, <span class="Constant">&quot; ... &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/expand-5&quot;</span>
<span id="L1148" class="LineNr">1148 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">6</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/expand-5/cursor&quot;</span>
<span id="L1149" class="LineNr">1149 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/y, <span class="Constant">&quot; 1 transform infix &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/expand-6&quot;</span>
<span id="L1150" class="LineNr">1150 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">7</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/expand-6/cursor&quot;</span>
<span id="L1151" class="LineNr">1151 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">8</span>/y, <span class="Constant">&quot; ... &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/expand-7&quot;</span>
<span id="L1152" class="LineNr">1152 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">8</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/expand-7/cursor&quot;</span>
<span id="L1153" class="LineNr">1153 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">9</span>/y, <span class="Constant">&quot; 1 <a href='macroexpand.mu.html#L1'>macroexpand</a> 7 &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/expand-8&quot;</span>
<span id="L1154" class="LineNr">1154 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">9</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/expand-8/cursor&quot;</span>
<span id="L1155" class="LineNr">1155 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">0xa</span>/y, <span class="Constant">&quot; 2 <a href='macroexpand.mu.html#L46'>macroexpand-iter</a> 7 &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/expand-9&quot;</span>
<span id="L1156" class="LineNr">1156 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">0xa</span>/y, <span class="Constant">&quot; |||||||||||||||||||| &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/expand-9/cursor&quot;</span>
<span id="L1157" class="LineNr">1157 </span> <a href='../504test-screen.mu.html#L7'>check-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">0xb</span>/y, <span class="Constant">&quot; ... &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/expand-10&quot;</span>
<span id="L1158" class="LineNr">1158 </span> <a href='../504test-screen.mu.html#L257'>check-background-color-in-screen-row</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">7</span>/bg=cursor, <span class="Constant">0xb</span>/y, <span class="Constant">&quot; &quot;</span>, <span class="Constant">&quot;F - <a href='sandbox.mu.html#L1035'>test-run-preserves-trace-view-on-rerun</a>/expand-10/cursor&quot;</span>
<span id="L1159" class="LineNr">1159 </span><span class="Delimiter">}</span>
</pre>
</body>
</html>

File diff suppressed because it is too large Load Diff