Paul King

Results 56 comments of Paul King

The examples I showed earlier work in 2.5+ but not 2.4. I don't know if that helps.

For the deprecated `groovy.util.CliBuilder`, you'd need to change the last line to: ``` assert options.getDelegate().getSavedTypeOptions()['abc']?.type.toString() == 'double' ``` And that class (`groovy.util` variant) is removed in Groovy 4 to allow...

@eric-milles No, those cases aren't covered but the if case is. The Stack/Deque case is one of the test cases. The full solution I think will require us to push...

I like the idea but I think we can make it more generic. Perhaps something like what I show here is a desirable prerequisite tweak to Groovy: https://github.com/apache/groovy/pull/312 We could...

Hi Christoffer, perhaps you can explain what you are trying to do and we can show you how to do it in Groovy. The Java approach to properties is to...

I know it doesn't cover all use cases, but for records in Groovy 4, annotations on the record are carried over to the constructor if placed on the record. It...

Thanks for your submission. I am hoping to get time to review shortly.

I totally understand the need for this but it does feel a bit like a hack to fix a slightly imperfect 'feature' of Groovy. I'd prefer to fix the underlying...

Just to clarify - this isn't a PR designed to fix a problem (although BindingScript might prove useful in a solution) but to illustrate a problem. Correct?