New convention for parameters in (class) functions and procedures

New convention for parameters in (class) functions and procedures

(class) procedure Test(var VSomething: Boolean; const ASomethingElse);

(class) functionTest(var VSomething: Boolean; const ASomethingElse): Integer;

check that "normal" parameter names start with an A (or any other letters one like to use)

check that var parameter names start with an V (or any other letters one like to use)

make the "var" check optional.

Maybe old school style but it help understanding the code much better.

This should not be too difficult to implement - most of the hard work has already been done.

Thanks in advance.

Best regards,
Fons