_INCASE Inconsistent Case Report

Top  Previous  Next

 

[BP7, D1,D2,D3,D4,D5,D6,D7,D8, D2005W, D2005N, D2006W, D2006N, D2007W]

 

This report contains two sections, reporting inconsistent case for identifiers.

Inconsistent case for same identifier.

 

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;

 

 

See also:

 

R_GEN General Reports