[
https://issues.apache.org/jira/browse/GROOVY-9382?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Eric Milles reassigned GROOVY-9382:
-----------------------------------
Assignee: Eric Milles
> Inconsistent support for [Bb]oolean properties
> ----------------------------------------------
>
> Key: GROOVY-9382
> URL: https://issues.apache.org/jira/browse/GROOVY-9382
> Project: Groovy
> Issue Type: Bug
> Affects Versions: 2.4.18, 2.5.9, 3.0.0-rc-3
> Reporter: Eric Milles
> Assignee: Eric Milles
> Priority: Major
>
> In addition to issues noted in GROOVY-5245 and GROOVY-6097, consider the
> following:
> {code:groovy}
> class Pogo {
> Boolean b = true
> }
> def pogo = new Pogo()
> println pogo.b // prints "true"
> println pogo.getB() // prints "true"
> println pogo.isB() // throws MissingPropertyException
> {code}
> If {{@TypeChecked}} is added, no STC error for {{pogo.isB()}}. If
> {{@CompileStatic}} is added, no STC error for {{pogo.isB()}} and exception
> changes to NoSuchMethodError.
> I'd prefer a Boolean property could be accessed using an "is" method. If
> the scenario is reversed (class with only {{Boolean isB()}} method), the
> property expression {{pogo.b}} is supported.
--
This message was sent by Atlassian Jira
(v8.3.4#803005)