about summary refs log tree commit diff stats
path: root/html/apps/arith.mu.html
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-11-29 13:36:32 -0800
committerKartik Agaram <vc@akkartik.com>2020-11-29 13:42:27 -0800
commit775f77c3346d231fc6133de2c7da2bb1e8ef0c2e (patch)
tree3daff158b0bf201c625abca645ce09014df51315 /html/apps/arith.mu.html
parent55dfa5b98530bdeae19f5e1f118634d9c774773f (diff)
downloadmu-775f77c3346d231fc6133de2c7da2bb1e8ef0c2e.tar.gz
7306
Diffstat (limited to 'html/apps/arith.mu.html')
-rw-r--r--html/apps/arith.mu.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/html/apps/arith.mu.html b/html/apps/arith.mu.html
index 0868da6e..6bca6493 100644
--- a/html/apps/arith.mu.html
+++ b/html/apps/arith.mu.html
@@ -137,7 +137,7 @@ if ('onhashchange' in window) {
 <span id="L78" class="LineNr"> 78 </span>      <span class="PreProc">break-if-=</span> $expression:<span class="PreProc">loop</span>
 <span id="L79" class="LineNr"> 79 </span>    <span class="Delimiter">}</span>
 <span id="L80" class="LineNr"> 80 </span>    <span class="muComment"># read operator</span>
-<span id="L81" class="LineNr"> 81 </span>    <span class="PreProc">var</span> op/<span class="Constant">ecx</span>: byte <span class="SpecialChar">&lt;-</span> copy <span class="Constant">0</span>
+<span id="L81" class="LineNr"> 81 </span>    <span class="PreProc">var</span> op/<span class="Constant">ecx</span>: grapheme <span class="SpecialChar">&lt;-</span> copy <span class="Constant">0</span>
 <span id="L82" class="LineNr"> 82 </span>    op, look <span class="SpecialChar">&lt;-</span> operator look
 <span id="L83" class="LineNr"> 83 </span>    <span class="muComment"># read next arg</span>
 <span id="L84" class="LineNr"> 84 </span>    <span class="PreProc">var</span> second/<span class="Constant">edx</span>: int <span class="SpecialChar">&lt;-</span> copy <span class="Constant">0</span>
@@ -183,7 +183,7 @@ if ('onhashchange' in window) {
 <span id="L124" class="LineNr">124 </span>      <span class="PreProc">break-if-=</span> $term:<span class="PreProc">loop</span>
 <span id="L125" class="LineNr">125 </span>    <span class="Delimiter">}</span>
 <span id="L126" class="LineNr">126 </span>    <span class="muComment"># read operator</span>
-<span id="L127" class="LineNr">127 </span>    <span class="PreProc">var</span> op/<span class="Constant">ecx</span>: byte <span class="SpecialChar">&lt;-</span> copy <span class="Constant">0</span>
+<span id="L127" class="LineNr">127 </span>    <span class="PreProc">var</span> op/<span class="Constant">ecx</span>: grapheme <span class="SpecialChar">&lt;-</span> copy <span class="Constant">0</span>
 <span id="L128" class="LineNr">128 </span>    op, look <span class="SpecialChar">&lt;-</span> operator look
 <span id="L129" class="LineNr">129 </span>    <span class="muComment"># read next arg</span>
 <span id="L130" class="LineNr">130 </span>    <span class="PreProc">var</span> second/<span class="Constant">edx</span>: int <span class="SpecialChar">&lt;-</span> copy <span class="Constant">0</span>
@@ -261,8 +261,8 @@ if ('onhashchange' in window) {
 <span id="L202" class="LineNr">202 </span>  <span class="PreProc">return</span> <span class="Constant">0</span>  <span class="muComment"># false</span>
 <span id="L203" class="LineNr">203 </span><span class="Delimiter">}</span>
 <span id="L204" class="LineNr">204 </span>
-<span id="L205" class="LineNr">205 </span><span class="PreProc">fn</span> <span class="muFunction">operator</span> _look: grapheme<span class="PreProc"> -&gt; </span>_/<span class="Constant">ecx</span>: byte, _/<span class="Constant">esi</span>: grapheme <span class="Delimiter">{</span>
-<span id="L206" class="LineNr">206 </span>  <span class="PreProc">var</span> op/<span class="Constant">ecx</span>: byte <span class="SpecialChar">&lt;-</span> copy _look
+<span id="L205" class="LineNr">205 </span><span class="PreProc">fn</span> <span class="muFunction">operator</span> _look: grapheme<span class="PreProc"> -&gt; </span>_/<span class="Constant">ecx</span>: grapheme, _/<span class="Constant">esi</span>: grapheme <span class="Delimiter">{</span>
+<span id="L206" class="LineNr">206 </span>  <span class="PreProc">var</span> op/<span class="Constant">ecx</span>: grapheme <span class="SpecialChar">&lt;-</span> copy _look
 <span id="L207" class="LineNr">207 </span>  <span class="PreProc">var</span> look/<span class="Constant">esi</span>: grapheme <span class="SpecialChar">&lt;-</span> <a href='arith.mu.html#L248'>get-char</a>
 <span id="L208" class="LineNr">208 </span>  <span class="PreProc">return</span> op, look
 <span id="L209" class="LineNr">209 </span><span class="Delimiter">}</span>