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.



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

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



66
67
68
# File 'lib/git_spelunk/offset.rb', line 66

def data
  @data
end

#offsetObject

Returns the value of attribute offset

Returns:

  • (Object)

    the current value of offset



66
67
68
# File 'lib/git_spelunk/offset.rb', line 66

def offset
  @offset
end

Instance Method Details

#<<(other) ⇒ Object



79
80
81
# File 'lib/git_spelunk/offset.rb', line 79

def <<(other)
  data << other
end

#sizeObject



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

def size
  data.size
end

#typeObject



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

def type
  data.first.line_origin
end