123456789_123456789_123456789_123456789_123456789_

Class: TypeProf::CodeRangeTable::Entry

Relationships & Source Files
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
self, Struct
Instance Chain:
self, Struct
Inherits: Struct
  • Object
Defined in: lib/typeprof/code-range.rb,
lib/typeprof/code-range.rb

Instance Attribute Summary

Instance Method Summary

Instance Attribute Details

#children (rw)

[ GitHub ]

  
# File 'lib/typeprof/code-range.rb', line 96

Entry = Struct.new(:range, :value, :children)

#range (rw)

[ GitHub ]

  
# File 'lib/typeprof/code-range.rb', line 96

Entry = Struct.new(:range, :value, :children)

#value (rw)

[ GitHub ]

  
# File 'lib/typeprof/code-range.rb', line 96

Entry = Struct.new(:range, :value, :children)

Instance Method Details

#inspect

[ GitHub ]

  
# File 'lib/typeprof/code-range.rb', line 99

def inspect
  "[%p, %p, %p]" % [range, value, children]
end