about summary refs log tree commit diff stats
path: root/062array.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-07-13 22:43:16 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-07-13 22:50:49 -0700
commit77d5b5d658830bd24724f945e0d6ddf6a06adc0e (patch)
tree94c50c0ddfa6d55dc1189d62243ceeacaf783326 /062array.mu
parent84e4ed1ab58d5b34cf92919aedbb15736a7349d9 (diff)
downloadmu-77d5b5d658830bd24724f945e0d6ddf6a06adc0e.tar.gz
1780 - now we always reclaim local scopes
But still no difference in either memory footprint or in running time.
This will teach me -- for the umpteenth time -- to optimize before
measuring.
Diffstat (limited to '062array.mu')
-rw-r--r--062array.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/062array.mu b/062array.mu
index b7937fbc..a14f4916 100644
--- a/062array.mu
+++ b/062array.mu
@@ -13,7 +13,7 @@ scenario array-from-args [
 
 # create an array out of a list of scalar args
 recipe new-array [
-  new-default-space
+  local-scope
   capacity:number <- copy 0:literal
   {
     # while read curr-value