Details
Description
parser.y contains the following:
enum_constructor: IDENTIFIER { makeField(new TypeDef($1, 0), ""); } | IDENTIFIER CODEBLOCK { makeField(new TypeDef($1, 0), ""); } | IDENTIFIER PARENBLOCK { makeField(new TypeDef($1, 0), ""); } | IDENTIFIER PARENBLOCK CODEBLOCK { makeField(new TypeDef($1, 0), ""); };
This just can't be right, since fields and constructors are two completely different things.
Activity
Robert Scholte
made changes -
Field | Original Value | New Value |
---|---|---|
Status | Open [ 1 ] | In Progress [ 3 ] |
Robert Scholte
made changes -
Status | In Progress [ 3 ] | Open [ 1 ] |
Robert Scholte
made changes -
Status | Open [ 1 ] | Resolved [ 5 ] |
Fix Version/s | 2.0 [ 15636 ] | |
Resolution | Fixed [ 1 ] |
just stumbling over this.
is this also parsing A as class and enables access to the methods (Until now name and A are fields)?