about summary refs log tree commit diff stats
path: root/html/056static_dispatch.cc.html
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-04-25 22:27:19 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-04-25 22:27:19 -0700
commit32b8fac2799ac7cec613e84a3eb9c009141b6a3a (patch)
tree11f56c1a235abf7b626ea8983fff3d2edb1fcf98 /html/056static_dispatch.cc.html
parent224972ee9871fcb06ee285fa5f3d9528c034d414 (diff)
downloadmu-32b8fac2799ac7cec613e84a3eb9c009141b6a3a.tar.gz
2866
Diffstat (limited to 'html/056static_dispatch.cc.html')
-rw-r--r--html/056static_dispatch.cc.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/html/056static_dispatch.cc.html b/html/056static_dispatch.cc.html
index 116970e1..0193d57f 100644
--- a/html/056static_dispatch.cc.html
+++ b/html/056static_dispatch.cc.html
@@ -439,13 +439,13 @@ $error: <span class="Constant">0</span>
 
 <span class="Delimiter">:(scenario static_dispatch_works_with_compound_type_containing_container_defined_after_first_use)</span>
 def main [
-  <span class="Normal">x</span>:address:shared:foo<span class="Special"> &lt;- </span><span class="Normal">new</span> foo:type
+  <span class="Normal">x</span>:address:foo<span class="Special"> &lt;- </span><span class="Normal">new</span> foo:type
   test x
 ]
 container foo [
   <span class="Normal">x</span>:number
 ]
-def test a:address:shared:foo <span class="Delimiter">-&gt;</span> z:number [
+def test a:address:foo <span class="Delimiter">-&gt;</span> z:number [
   local-scope
   load-ingredients
   <span class="Normal">z</span>:number<span class="Special"> &lt;- </span>get *a<span class="Delimiter">,</span> x:offset
@@ -454,10 +454,10 @@ $error: <span class="Constant">0</span>
 
 <span class="Delimiter">:(scenario static_dispatch_works_with_compound_type_containing_container_defined_after_second_use)</span>
 def main [
-  <span class="Normal">x</span>:address:shared:foo<span class="Special"> &lt;- </span><span class="Normal">new</span> foo:type
+  <span class="Normal">x</span>:address:foo<span class="Special"> &lt;- </span><span class="Normal">new</span> foo:type
   test x
 ]
-def test a:address:shared:foo <span class="Delimiter">-&gt;</span> z:number [
+def test a:address:foo <span class="Delimiter">-&gt;</span> z:number [
   local-scope
   load-ingredients
   <span class="Normal">z</span>:number<span class="Special"> &lt;- </span>get *a<span class="Delimiter">,</span> x:offset