NAME

SystemC::Coverage::Item - Coverage analysis item

SYNOPSIS

use SystemC::Coverage;

$Coverage = new SystemC::Coverage;
foreach my $item ($Coverage->items()) {
    print $item->count;
}

DESCRIPTION

SystemC::Coverage::Item provides data on a single coverage point.

METHODS

count_inc (inc)

Increment the item's count by the specified value.

hash

Return a reference to a hash of key/value pairs.

key

Return a key suitable for sorting.

ACCESSORS

column

Column number for the item.

comment

Textual description for the item.

count

Return the count for this point.

filename

Filename of the item.

hier

Hierarchy path name for the item.

lineno

Line number for the item.

type

Type of coverage (block, line, fsm, etc.)

SEE ALSO

SystemC::Coverage

AUTHORS

Wilson Snyder <wsnyder@wsnyder.org>