C0 code coverage information
Generated on Wed Aug 01 14:04:25 -0300 2007 with rcov 0.8.0
Code reported as executed by Ruby looks like this...
and this: this line is also marked as covered.
Lines considered as run by rcov, but not reported by Ruby, look like this,
and this: these lines were inferred by rcov (using simple heuristics).
Finally, here's a line marked as not executed.
1 module YAJD
2
3 module Attributes
4
5 #TODO this attribute does not appear in the docs for the vm spec but on a
6 #pdf for java5 (check if all the chapters are available as pdf)
7 class SignatureInfo < AttributeInfo
8 include PoolHelper
include PoolHelper
1 #<Class:YAJD::PoolHelper>#included at lib/pool_helper.rb:5
9
10 pool_getter :signature
pool_getter :signature
1 #<Class:YAJD::Attributes::SignatureInfo>#pool_getter at lib/pool_helper.rb:8
11
12 def initialize(constant_pool, attribute_name_index, parent, f)
def initialize(constant_pool, attribute_name_index, parent, f)
2 lib/attributes/attribute.rb:14 in '#<Class:YAJD::Attributes>#factory'
13 super(constant_pool, attribute_name_index, parent)
super(constant_pool, attribute_name_index, parent)
2 YAJD::Attributes::AttributeInfo#initialize at lib/attributes/attribute.rb:31
14 @attribute_length = f.read_u4
@attribute_length = f.read_u4
2 File#read_u4 at lib/ext/file.rb:15
15 @signature_index = f.read_u2
@signature_index = f.read_u2
2 File#read_u2 at lib/ext/file.rb:10
16 end
17
18 attr_reader :attribute_length, :signature_index
19 end
20
21 end
22
23 end
Generated using the rcov code coverage analysis tool for Ruby version 0.8.0.