|
[BP7, D1,D2,D3,D4,D5,D6,D7,D8, D2005W, D2005N, D2006W, D2006N, D2007W, D2009W, D2010W, DXEW]
Inconsistent case for same identifier
This is a list of the locations where the identifier is written with a different case compared with the declaration.
Example:
procedure MyProc;
var
MyStr : string;
begin
Mystr := ‘Hi’; // !! this will trigger a listing
..
MyStr := ‘Again’; // this will not
end;
__________________________________________________
Inconsistent case for different identifiers with same name
This is a list of all identifiers with the same name, but that are declared with different case.
Example:
var
MyInt : integer;
..
procedure Proc;
var
Myint : string; // same name as global MyInt above, but different case
begin
..
end;
__________________________________________________
Mismatch unit name/file name
This is a list of all units with mismatch between the unit name and file name.
See also:
General Reports
|