Class: GitSpelunk::Offset::Chunk::LineBlock

Inherits:
Struct
  • Object
show all
Defined in:
lib/git_spelunk/offset.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(offset, line) ⇒ LineBlock

Returns a new instance of LineBlock.



64
65
66
# File 'lib/git_spelunk/offset.rb', line 64

def initialize(offset, line)
  super(offset, [line])
end

Instance Attribute Details

#dataObject

Returns the value of attribute data

Returns:

  • (Object)

    the current value of data



63
64
65
# File 'lib/git_spelunk/offset.rb', line 63

def data
  @data
end

#offsetObject

Returns the value of attribute offset

Returns:

  • (Object)

    the current value of offset



63
64
65
# File 'lib/git_spelunk/offset.rb', line 63

def offset
  @offset
end

Instance Method Details

#<<(other) ⇒ Object



76
77
78
# File 'lib/git_spelunk/offset.rb', line 76

def <<(other)
  data << other
end

#sizeObject



72
73
74
# File 'lib/git_spelunk/offset.rb', line 72

def size
  data.size
end

#typeObject



68
69
70
# File 'lib/git_spelunk/offset.rb', line 68

def type
  data.first[0]
end