using the next field of blocks for a consecutive code line

This commit is contained in:
Torsten Ruger
2014-05-22 13:59:47 +03:00
parent a76ba577f2
commit cf87c5323d
3 changed files with 43 additions and 36 deletions

View File

@ -25,7 +25,7 @@ module Ast
if( l_val ) #variable existed, move data there
l_val = l_val.move( into , r_val)
else
l_val = context.function.new_local.load( into , r_val )
l_val = context.function.new_local.move( into , r_val )
end
context.locals[left.name] = l_val
return l_val