diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-07-18 15:22:49 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-07-18 15:22:49 -0700 |
commit | 762b099ef6c6ad5b6b61d29e473baa6df8d64ab9 (patch) | |
tree | 8075befbcc8ef2784616c4937793ebed9d21123d /html/066stream.mu.html | |
parent | 614ea44bc2708a687ba10b162a6dc70e48dfac59 (diff) | |
download | mu-762b099ef6c6ad5b6b61d29e473baa6df8d64ab9.tar.gz |
1818
Diffstat (limited to 'html/066stream.mu.html')
-rw-r--r-- | html/066stream.mu.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/html/066stream.mu.html b/html/066stream.mu.html index 2e899c6c..44a3b3ac 100644 --- a/html/066stream.mu.html +++ b/html/066stream.mu.html @@ -36,7 +36,7 @@ container stream [ ] <span class="muRecipe">recipe</span> new-stream [ - <span class="Constant">new-default-space</span> + <span class="Constant">local-scope</span> result:address:stream<span class="Special"> <- </span>new stream:type i:address:number<span class="Special"> <- </span>get-address result:address:stream/deref, index:offset i:address:number/deref<span class="Special"> <- </span>copy <span class="Constant">0:literal</span> @@ -46,7 +46,7 @@ container stream [ ] <span class="muRecipe">recipe</span> rewind-stream [ - <span class="Constant">new-default-space</span> + <span class="Constant">local-scope</span> in:address:stream<span class="Special"> <- </span><span class="Constant">next-ingredient</span> x:address:number<span class="Special"> <- </span>get-address in:address:stream/deref, index:offset x:address:number/deref<span class="Special"> <- </span>copy <span class="Constant">0:literal</span> @@ -54,7 +54,7 @@ container stream [ ] <span class="muRecipe">recipe</span> read-line [ - <span class="Constant">new-default-space</span> + <span class="Constant">local-scope</span> in:address:stream<span class="Special"> <- </span><span class="Constant">next-ingredient</span> idx:address:number<span class="Special"> <- </span>get-address in:address:stream/deref, index:offset s:address:array:character<span class="Special"> <- </span>get in:address:stream/deref, data:offset @@ -65,7 +65,7 @@ container stream [ ] <span class="muRecipe">recipe</span> end-of-stream? [ - <span class="Constant">new-default-space</span> + <span class="Constant">local-scope</span> in:address:stream<span class="Special"> <- </span><span class="Constant">next-ingredient</span> idx:number<span class="Special"> <- </span>get in:address:stream/deref, index:offset s:address:array:character<span class="Special"> <- </span>get in:address:stream/deref, data:offset |