diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2016-12-26 20:44:10 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2016-12-26 20:58:37 -0800 |
commit | 201458e3bd2f1d79a0ea0b853552e9df267e92b1 (patch) | |
tree | 0a4f13662cde7f92ae0bcf641c9733e2a0fcd6ef /html/059to_text.mu.html | |
parent | e35c2d6857e1ed916221faae707e3c53ff8ed042 (diff) | |
download | mu-201458e3bd2f1d79a0ea0b853552e9df267e92b1.tar.gz |
3713 - cross-link calls with definitions in html
Diffstat (limited to 'html/059to_text.mu.html')
-rw-r--r-- | html/059to_text.mu.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/html/059to_text.mu.html b/html/059to_text.mu.html index c3700c68..449d2bd6 100644 --- a/html/059to_text.mu.html +++ b/html/059to_text.mu.html @@ -68,7 +68,7 @@ if ('onhashchange' in window) { <span id="L13" class="LineNr">13 </span>] <span id="L14" class="LineNr">14 </span> <span id="L15" class="LineNr">15 </span><span class="Comment"># variant for arrays (since we can't pass them around otherwise)</span> -<span id="L16" class="LineNr">16 </span><span class="muRecipe">def</span> array-to-text-line x:&:@:_elem<span class="muRecipe"> -> </span>y:text [ +<span id="L16" class="LineNr">16 </span><span class="muRecipe">def</span> <a href='059to_text.mu.html#L16'>array-to-text-line</a> x:&:@:_elem<span class="muRecipe"> -> </span>y:text [ <span id="L17" class="LineNr">17 </span> <span class="Constant">local-scope</span> <span id="L18" class="LineNr">18 </span> <span class="Constant">load-ingredients</span> <span id="L19" class="LineNr">19 </span> y <span class="Special"><-</span> to-text *x @@ -81,7 +81,7 @@ if ('onhashchange' in window) { <span id="L26" class="LineNr">26 </span> <span id="L27" class="LineNr">27 </span><span class="muScenario">scenario</span> array-to-text-line-early-warning-for-static-dispatch [ <span id="L28" class="LineNr">28 </span> n:&:@:num <span class="Special"><-</span> new <span class="Constant">number:type</span>,<span class="Constant"> 3</span> -<span id="L29" class="LineNr">29 </span> x:text <span class="Special"><-</span> array-to-text-line n +<span id="L29" class="LineNr">29 </span> x:text <span class="Special"><-</span> <a href='059to_text.mu.html#L16'>array-to-text-line</a> n <span id="L30" class="LineNr">30 </span> <span class="Comment"># just ensure there were no errors</span> <span id="L31" class="LineNr">31 </span>] <span id="L32" class="LineNr">32 </span> |