Details
-
Type:
Test
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 1.9-beta-4, 1.8.4
-
Component/s: ast builder
-
Labels:None
-
Environment:1.9.0-beta-4-SNAPSHOT
-
Testcase included:yes
-
Patch Submitted:Yes
-
Number of attachments :
Description
The code try to set the modifier to "public static" but
ACC_PUBLIC & ACC_STATIC
means NOTHING:
public void testFieldExpression() {
// public static String foo = "a value"
def result = new AstBuilder().buildFromSpec {
field {
fieldNode "foo", ACC_PUBLIC & ACC_STATIC, String, this.class, {
constant "a value"
}
}
}
Thanks for the test case.