Class: GitSpelunk::Offset::Chunk::LineBlock
- Inherits:
-
Struct
- Object
- Struct
- GitSpelunk::Offset::Chunk::LineBlock
- Defined in:
- lib/git_spelunk/offset.rb
Instance Attribute Summary collapse
-
#data ⇒ Object
Returns the value of attribute data.
-
#offset ⇒ Object
Returns the value of attribute offset.
Instance Method Summary collapse
- #<<(other) ⇒ Object
-
#initialize(offset, line) ⇒ LineBlock
constructor
A new instance of LineBlock.
- #size ⇒ Object
- #type ⇒ Object
Constructor Details
#initialize(offset, line) ⇒ LineBlock
Returns a new instance of LineBlock.
66 67 68 |
# File 'lib/git_spelunk/offset.rb', line 66 def initialize(offset, line) super(offset, [line]) end |
Instance Attribute Details
#data ⇒ Object
Returns the value of attribute data
65 66 67 |
# File 'lib/git_spelunk/offset.rb', line 65 def data @data end |
#offset ⇒ Object
Returns the value of attribute offset
65 66 67 |
# File 'lib/git_spelunk/offset.rb', line 65 def offset @offset end |
Instance Method Details
#<<(other) ⇒ Object
78 79 80 |
# File 'lib/git_spelunk/offset.rb', line 78 def <<(other) data << other end |
#size ⇒ Object
74 75 76 |
# File 'lib/git_spelunk/offset.rb', line 74 def size data.size end |
#type ⇒ Object
70 71 72 |
# File 'lib/git_spelunk/offset.rb', line 70 def type data.first.line_origin end |