Re: macro debugger

2010-11-09 Thread Stuart Campbell
On 10 November 2010 02:50, Moritz Ulrich wrote: > I don't think there's a full-featured macro debugger for clojure, but > clojure has two simple functions called "macroexpand" and "macroexpand-1": > > user> (doc macroexpand-1 ) > ---

Re: macro debugger

2010-11-09 Thread Scott Jaderholm
body, > Today I just googled for macro-debugger and found the following ... > http://docs.racket-lang.org/macro-debugger/index.html > > I have not completely explored it yet .. however, I was wondering if there > is something similar for clojure.. is it possible to develop one? >

Re: macro debugger

2010-11-09 Thread Moritz Ulrich
I don't think there's a full-featured macro debugger for clojure, but clojure has two simple functions called "macroexpand" and "macroexpand-1": user> (doc macroexpand-1 ) - clojure.core/macroexpand-1 ([form]) If form represents a

macro debugger

2010-11-09 Thread Sunil S Nandihalli
Hello everybody, Today I just googled for macro-debugger and found the following ... http://docs.racket-lang.org/macro-debugger/index.html I have not completely explored it yet .. however, I was wondering if there is something similar for clojure.. is it possible to develop one? Thanks, Sunil