Charles Oliver Nutter
Charles Oliver Nutter
Ok give me a shout if there's any way I can help!
Ok a month later, where do we stand? @kares @jlahtinen @chadlwilson I'd like to figure out the path forward.
@jlahtinen Thanks for trying this out! Does the resulting gem also work as you expect? @chadlwilson Seems like we could merge in @jlahtinen's patch and get this merged?
@chadlwilson This is great, thank you for your help! I think it's probably fine to merge now and we'll deal with the appraisals separately. @kares What do you think? Shall...
> LinkageError @jlahtinen I concur with @chadlwilson... that error seems like you have two copies of JRuby loading. Perhaps there's a JRuby jar in the bootstrap jars for Tomcat? For...
We probably could have better logging of method binding here, but I believe this is due to our trying to honor Java's stricter modularity and visibility restrictions in Java 17...
Other details from our discussion: * As with other reflection restrictions, the command-line argument `--add-opens` can be used to open up core JDK classes, but this is not workable for...
Looks like a reduced example is `def foo(a: 1); b = a; end; foo(b: "a")`. You got it right: the problem is that we're allowing keyword arguments for any name...
@enebo Seems like it bottoms out here for the JIT at least: https://github.com/jruby/jruby/blob/d994845e08ff1c9a2aef1d12f70599b980b67e98/core/src/main/java/org/jruby/parser/StaticScope.java#L409-L414 I wasn't clear on the best way to fix this. Perhaps it should go to a different...
Some work started in https://github.com/jruby/jruby/pull/8259 including improvements to the generated bytecode method names (for readability). Java profilers really need to filter out most of JRuby's internal methods to avoid the...