Record Fields get wrong comment
Free documentation system for Delphi / Pascal with JavaDoc support.
Status: Beta
Brought to you by:
trident
Record fields comments are moved down one line, the first field gets a 'no tag' comment.
This code:
{*=============================================================================
STRUCTURE: defines the rFieldPair variables for screen data
*}
r_ScreenFields = record
one, /// line one
two, /// line two
three, /// line three
four /// line four
: r_FieldPair;
end;
Documents like this:
| four | line three |
| one | #No TAG found in source code# |
| three | line two |
| two | line one |
Anonymous
Logged In: YES
user_id=1849523
Originator: YES
However, if the fields are individually qualified, like:
...
one : r_FieldPair /// line one
two : r_FieldPair /// line two
...
it works fine.
So the program seems to have trouble interpreting the comma separated list of type like fields as described in my initial bug report.
klatham
Logged In: YES
user_id=248829
Originator: NO
Yes, your analyse is right, bug will be fixed for next revision.
Priority raised.
Thanks for your help !