To be prepared for when T2H supports it, you can document the variables/fields, but you must make sure the first item which today is included in the output must have a DocComment, else it will "inherit" the one for the previous documented field:
type A = class(B)
private
FC: integer;
{: doccomment on D }
D: integer;
public
property C: integer;
end; |
In the above, C will (incorrectly) get the DocComment for D.
If you make sure C is documented:
type A = class(B)
private
FC: integer;
{: doccomment on D }
D: integer;
public
{: doccomment on C }
property C: integer;
end; |
Then the DocComment for D won't turn up anywhere in T2H 1.0, but will turn up correctly when DocComments on variables/fiels are supported.
|
|