[ 
https://issues.apache.org/jira/browse/GROOVY-6245?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Paul King updated GROOVY-6245:
------------------------------
    Description: 
It basically means that equals() and hashCode() generated using 
@EqualsAsHashCode will throw MissingMethodException if you define only is style 
getters for a glass. I expected the following to pass but it doesn't:

{code}
import groovy.transform.EqualsAndHashCode 

@EqualsAndHashCode
class A {
    boolean a
 
    boolean isA() { a }
}
 
def a1 = new A(a: true)
def a2 = new A(a: true)
assert a1.a
assert a1.hashCode()
assert a1 == a2
{code}

  was:
It basically means that equals() and hashCode() generated using 
@EqualsAsHashCode will throw MissingMethodException if you define only is style 
getters for a glass. I expected the following to pass but it doesn't:

{code}
import groovy.transform.EqualsAndHashCode 

@EqualsAndHashCode
class A {
    boolean a
 
    boolean isA() { a }
}
 
def a1 = new A(a: true)
def a2 = new A(a: true)
assert a1.a
assert a1.hashCode()
assert a1 == a2​
{code}


> @EqualsAndHashCode assumes get style getters for boolean properties
> -------------------------------------------------------------------
>
>                 Key: GROOVY-6245
>                 URL: https://issues.apache.org/jira/browse/GROOVY-6245
>             Project: Groovy
>          Issue Type: Bug
>          Components: xforms
>    Affects Versions: 2.1.6, 2.2.0-beta-1, 2.4.5
>            Reporter: Marcin Erdmann
>
> It basically means that equals() and hashCode() generated using 
> @EqualsAsHashCode will throw MissingMethodException if you define only is 
> style getters for a glass. I expected the following to pass but it doesn't:
> {code}
> import groovy.transform.EqualsAndHashCode 
> @EqualsAndHashCode
> class A {
>     boolean a
>  
>     boolean isA() { a }
> }
>  
> def a1 = new A(a: true)
> def a2 = new A(a: true)
> assert a1.a
> assert a1.hashCode()
> assert a1 == a2
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to