This function is used to make an array of line/count information based on the current coverage statistics. If the procedure name is given (first param), then the result will contain only coverage statistic for that procedure. if the procedure name is not supplied or supplied as NULL then the result will contain coverage data for all procedures having statistic. The add_line_info flag is used to add code excerpt on line info.
An array (or vector) is returned containing the line/count information of the selected coverage data. The format is as follows:
( ("PRODECURE_NAME" "file_name" <times executed> <total lines> ) -- procedure info ((<line no> <no executed> "<line excerpt>" ) .... ) -- line statistics (("CALLER PROCEDURE" <counts> ) .... ) -- caller statistics ... )