DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=19051>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=19051 ANLTR optional task: it ignores the property "debug" Summary: ANLTR optional task: it ignores the property "debug" Product: Ant Version: 1.5.3 Platform: PC OS/Version: Other Status: NEW Severity: Normal Priority: Other Component: Optional Tasks AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] ANTLR optional task has a property called debug that must indicate whether the call to antlr has to have the -debug parameter that indicates to antlr to generate source code with a call to a visual tracer of the parsing process. In the code that executes the task, when poppulating attributes, this property is ommited: private void populateAttributes() { ... /*This doesn't exist in the code*/ if (debug){ commandline.createArgument().setValue("-debug"); } }