Re: [jruby-dev] Keyword arguments and the compiler

2013-10-02 Thread Subramanya Sastry
On Tue, Oct 1, 2013 at 4:20 PM, Charles Oliver Nutter wrote: > Many questions! > > On Tue, Oct 1, 2013 at 3:41 PM, Jon Zeppieri wrote: > > - Are NotCompilableExceptions caught somewhere, allowing the > > interpreter to carry on? (I did a simple grep for this, but didn't > > find it.) Or was that

Re: [jruby-dev] Keyword arguments and the compiler

2013-10-02 Thread Jon Zeppieri
Thanks for your help, Charles. It seems that when I run the interpreter, RUBY_VERSION is set to 2.0, based on my .jrubyrc (which has "compat.version=2.0"), but when I run the compiler, it's set to 1.9.3. So, I suppose that setting isn't being used by the compiler -- at least, not when run with the

Re: [jruby-dev] Keyword arguments and the compiler

2013-10-01 Thread Charles Oliver Nutter
Many questions! On Tue, Oct 1, 2013 at 3:41 PM, Jon Zeppieri wrote: > - Are NotCompilableExceptions caught somewhere, allowing the > interpreter to carry on? (I did a simple grep for this, but didn't > find it.) Or was that code path not taken, at all? NotCompileableException is caught by the JI

[jruby-dev] Keyword arguments and the compiler

2013-10-01 Thread Jon Zeppieri
[Apologies to the list admin who probably received a couple of these already, as I've been fighting with the mailer daemon.] I'm attempting to add keyword argument support to the compiler, but since I'm completely new to the codebase, I have a few questions. I really appreciate any help you can gi