Re: [qooxdoo-devel] problem with Variable/String optimizations

2006-12-09 Thread Sebastian Werner
In my opinion in this case the simpler one is just better. I think you idea is great if there is really a strong use of such things. Normally, you don't need this to often. Variable optimization is IMHO only problematic when using in combination with new Function or eval. So there is a limited

Re: [qooxdoo-devel] problem with Variable/String optimizations

2006-12-09 Thread Alessandro Sala
Hello Sebastian, Frederic, What's about to introduce a special variable prefix which declares a variable to not get optimized e.g. "$vData" instead of "vData". Sebastian frederic schrieb: Thanks Alessandro. I can often rewrite code with an "array syntax" but sometimes I must

Re: [qooxdoo-devel] problem with Variable/String optimizations

2006-12-09 Thread frederic
Hi Sebastian, IMHO, it is a good idea compared to my suggestion and I think easier to implement. cheers. Sebastian Werner wrote: > > What's about to introduce a special variable prefix which declares a > variable to not get optimized e.g. "$vData" instead of "vData". > > Sebastian > > > >

Re: [qooxdoo-devel] problem with Variable/String optimizations

2006-12-09 Thread Sebastian Werner
What's about to introduce a special variable prefix which declares a variable to not get optimized e.g. "$vData" instead of "vData". Sebastian frederic schrieb: > Thanks Alessandro. I can often rewrite code with an "array syntax" but > sometimes I must keep eval instruction. > What do you thin