> On 6 Jun 2016, at 3:15 PM, Dar Scott <d...@swcp.com> wrote:
> 
> The problem is more general than the use of any and random().  It applies to 
> functions with side effects.  
> 
> And if the compiler is allowed to combine like-looking expressions (as in 
> your example), it should prove that there can be no side effects.  
> 
> One solution would be to allow the building of user commands that behave like 
> 'add' and can work with chunks.  I don't think this is an easy problem, but I 
> do think it is doable.  Again, the problems are with side effects.  

Hmm… certainly an interesting idea:

put 1,2,3 into tVar
myAdd 5, item 3 of tVar

command myAdd pToAdd, @xAddTo
   put pToAdd+xAddTo into xAddTo
end myAdd

tVar = 1,2,8

I doubt we should get our hopes up Dar ;-)

Of course if we can do that it means ruling out what I was suggesting as the 
chunk could mutate from one reference to the next. The case of a command 
mutating a single chunk is much simpler as it’s just a case of retaining the 
evaluation.

Cheers

Monte
_______________________________________________
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Reply via email to