[cfaussie] Re: Varscoping and CF9

2011-10-03 Thread Dave
I'm interested in your approach. Given that variables scope is object- scoped, do you have a method such as getCountVars in each class, then iterate over your singletons, asking each one for how many vars it has? Got any code to share? On Oct 4, 12:01 pm, MrBuzzy mrbu...@gmail.com wrote: Saw

[cfaussie] Re: Varscoping and CF9

2011-10-03 Thread Dave
Sean, Agreed it's much easier and I'm quite liking to new var-declaring rules. I'm kind of surprised that Adode hasn't come up with a solution (built into the compiler), given that the consequences for getting it wrong are so grave and they have put a lot of time and effort into making cfscript

Re: [cfaussie] Re: Varscoping and CF9

2011-10-03 Thread MrBuzzy
Can't share the code sorry. It's nothing too magical. We use a custom tag, with a start and end tag. The tag wraps the body of the cf function. The tag test the length of the variables scope at the start and end of the tag. I probably shouldn't be recommending it. It's probably an

Re: [cfaussie] Re: Varscoping and CF9

2011-10-03 Thread Sean Corfield
On Mon, Oct 3, 2011 at 6:22 PM, MrBuzzy mrbu...@gmail.com wrote: We use a custom tag, with a start and end tag. Might be hard to run a custom tag in cfscript... :) -- Sean A Corfield -- (904) 302-SEAN An Architect's View -- http://corfield.org/ World Singles, LLC. -- http://worldsingles.com/

Re: [cfaussie] Re: Varscoping and CF9

2011-10-03 Thread Andrew Myers
Sean should be able to whip up some clojure code that does it in a flash :) Sent from my mobile On 04/10/2011, at 12:56 PM, Sean Corfield seancorfi...@gmail.com wrote: On Mon, Oct 3, 2011 at 6:22 PM, MrBuzzy mrbu...@gmail.com wrote: We use a custom tag, with a start and end tag. Might be

Re: [cfaussie] Re: Varscoping and CF9

2011-10-03 Thread MrBuzzy
Yeah, what he said ;) Sent from my iPhone On 04/10/2011, at 12:59 PM, Andrew Myers am2...@gmail.com wrote: Sean should be able to whip up some clojure code that does it in a flash :) Sent from my mobile On 04/10/2011, at 12:56 PM, Sean Corfield seancorfi...@gmail.com wrote: On Mon,

Re: [cfaussie] Re: Varscoping and CF9

2011-10-03 Thread Sean Corfield
On Mon, Oct 3, 2011 at 6:59 PM, Andrew Myers am2...@gmail.com wrote: Sean should be able to whip up some clojure code that does it in a flash :) Heh, one of the reasons I like Clojure is that it's thread safe by design since data is immutable by default and any mutability is managed thru STM