Jeff Goff

Results 16 comments of Jeff Goff

No problem, I just wanted to make sure the PR got out there.

https://github.com/niner/Inline-Python/pull/22 - Inline/Python.pm6 and t/inherit.t test added

Not speaking as an author of a JSON module here, but certainly of some other Perl 6 modules. Rather than hard-coding a method name, I'd suggest something like .to-json( $obj,...

Another suggestion that feels even more Perl6ish to me would be something like this: ``` class MyObject { has $.attribute; method JSON returns JSONStr { # your package could create...

I should mention that this is XUbuntu Linux running in a Windows host, looking at the code in the area of failure reminded me of this. Commenting out anything that...

> > > FWIW the `no precompilation` workaround solved the issue I had on ubuntu Seems to work for me, thanks a lot!

It's even simpler than I suspected. Any grammar with a hyphen in a rule name should trigger the bug.

Thanks again, I'll leave this open to get some ideas for later.

The latter, and that's a good point but getting it to properly work post-GLR (yes, there was quite a gap in development time due to health issues) takes priority. I'll...

First, thanks for actually running or even looking at the code :) I know about pos($re) in Perl5, but I hadn't yet looked into the reasons behind why Perl6 no...