You see pretty often here people saying that they have a x million of lines of code project. How is this measured? Is this number, the number shown under 'Information' menu? The manual says that only the compilable lines are counted (so, without comments and empty lines):
Source compiled -> Displays total number of lines compiled.
But the manual doesn't explain how a piece of code as if/then/else is counted:
if B=true
then
for i:= 0 to 100
do Stuff
else ;
- Is every line that has a blue dot is a "compiled line"?
- The Embarcadero code (the RTL and VCL code) and 3rd party libraries are also included into the count?
- (The conclusion) What does it mean when somebody says about a Delphi program that it has 1 million lines?