Paul King
Paul King
Any particular concern @blackdrag? I like very much the many options this opens up but also wish there was a nicer way to implement. I just can't think of any...
I'll close this for now. I think it is a nice feature but we have other changes for annotations with higher priority, so we can come back to this at...
See https://issues.apache.org/jira/browse/GROOVY-10611 TL;DR: will be fixed in 3.0.11 when we release in a week or two. With 3.0.11, the stub will contain 123 as the constant value rather than 0....
Apache has a 72 hr voting window on releases (it promotes human checking and approval over and above any earlier CI checks). The _Tag_ is created at the start of...
`./gradlew dependencies` shows it is an indirect dependency of `jupyter-jvm-basekernel` which (along with its dependencies) is shaded into the `IJava` jar: ``` runtimeClasspath - Runtime classpath of source set 'main'....
It looks like you already have a PR over in the relevant project (`jupyter-jvm-basekernel`). If that project is updated, it will be easy to bump the version of that plugin...
Just capturing as a PR the suggestion from Masato Nagai. I wasn't sure how to handle `cast` and `constructorCall`. I handled `parameter` by making a non-Map version. Probably needs some...
Don't merge as is. Needs discussion as to whether the commented out method signature changes can be supported. Also needs more tests. Also, given that some of the commented out...
Also, groovydoc and docgenerator need to be updated (though changes are obviously needed regardless of this PR). Javadoc shows method entries like this: ``` static C collect(Collection self, C collector,...
An example showing the ramifications of this breaking change: ``` def nums = [2,4,5,6] Set a = [*nums] Set b = [*nums, 'foo', 'bar'] // before assert [1, 2, 3]...