Class: Gherkin::Formatter::Model::Comment

Inherits:
Hashable
  • Object
show all
Defined in:
lib/gherkin/formatter/model.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Hashable

#to_hash

Constructor Details

#initialize(value, line) ⇒ Comment

Returns a new instance of Comment.



192
193
194
# File 'lib/gherkin/formatter/model.rb', line 192

def initialize(value, line)
  @value, @line = value, line
end

Instance Attribute Details

#lineObject (readonly)

Returns the value of attribute line.



190
191
192
# File 'lib/gherkin/formatter/model.rb', line 190

def line
  @line
end

#valueObject (readonly)

Returns the value of attribute value.



190
191
192
# File 'lib/gherkin/formatter/model.rb', line 190

def value
  @value
end