Re: compile fails but stack trace does not mention a line of code in my app

2012-10-29 Thread larry google groups
Since we're wild mass guessing, I'd say from that stack trace that there's invalid syntax in a defn's signature somewhere. Good guess! A copy and paste error left 2 extra letters: (defn is-user-valid? wh [request] That wh was tough to find. On Thursday, October 25, 2012 3:05:25

Re: compile fails but stack trace does not mention a line of code in my app

2012-10-29 Thread Ambrose Bonnaire-Sergeant
This error is much better in Clojure 1.5.0-beta1. #IllegalArgumentException java.lang.IllegalArgumentException: Parameter declaration wh should be a vector Thanks, Ambrose On Tue, Oct 30, 2012 at 12:26 AM, larry google groups lawrencecloj...@gmail.com wrote: Since we're wild mass guessing,

Re: compile fails but stack trace does not mention a line of code in my app

2012-10-26 Thread Stathis Sideris
I've seen this error when putting the function name *after* the docstring instead of before in a defn. Stathis On Thursday, 25 October 2012 20:05:25 UTC+1, Philip Potter wrote: Since we're wild mass guessing, I'd say from that stack trace that there's invalid syntax in a defn's signature

compile fails but stack trace does not mention a line of code in my app

2012-10-25 Thread larry google groups
I am finding the following stack trace unusually devoid of information. My app is Clojure 1.3. I run lein compile and I get the following stack trace. Am I blind, or does this stack trace fail to tell me what line I should look at? lein compile Compiling who-is-logged-in.core Exception in

Re: compile fails but stack trace does not mention a line of code in my app

2012-10-25 Thread gaz jones
Look in who-is-logged-in.core for errors On Thu, Oct 25, 2012 at 1:36 PM, larry google groups lawrencecloj...@gmail.com wrote: who-is-logged-in.core -- You received this message because you are subscribed to the Google Groups Clojure group. To post to this group, send email to

Re: compile fails but stack trace does not mention a line of code in my app

2012-10-25 Thread Sean Corfield
On Thu, Oct 25, 2012 at 11:36 AM, larry google groups lawrencecloj...@gmail.com wrote: I am finding the following stack trace unusually devoid of information. My app is Clojure 1.3. I run lein compile and I get the following stack trace. Am I blind, or does this stack trace fail to tell me what

Re: compile fails but stack trace does not mention a line of code in my app

2012-10-25 Thread Philip Potter
Since we're wild mass guessing, I'd say from that stack trace that there's invalid syntax in a defn's signature somewhere. I'm basing this on the references to clojure.core$defn and clojure.core$sigs shortly above compile and macroexpand. Phil On Oct 25, 2012 7:36 PM, larry google groups