Re: getting inside another dynamic scope?

2011-12-07 Thread Andrew
(Sorry, I'll read this first http://clojure.org/vars#Vars%20and%20the%20Global%20Environment) -- You received this message because you are subscribed to the Google Groups Clojure group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated

Re: getting inside another dynamic scope?

2011-12-07 Thread Stuart Sierra
Clojure doesn't provide any mechanism to peek inside other threads. Dynamic Var bindings create java.lang.ThreadLocal objects to store the temporary bindings. A Java debugger or IDE *might* let you look at those. -S -- You received this message because you are subscribed to the Google Groups

getting inside another dynamic scope?

2011-12-06 Thread Andrew
Is there a way (without swank-cdt) to get inside some other dynamic scope that's blocked in order to evaluate some arbitrary code? Let's say a thread has paused waiting for some UI input. Earlier a dynamic var binding happened. You know the name of that var ... you know that thread is waiting