Class: Gherkin::Parser::Parser::Machine::StateMachineReader

Inherits:
Object
  • Object
show all
Defined in:
lib/gherkin/parser/parser.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeStateMachineReader

Returns a new instance of StateMachineReader.



148
149
150
# File 'lib/gherkin/parser/parser.rb', line 148

def initialize
  @rows = []
end

Instance Attribute Details

#rowsObject (readonly)

Returns the value of attribute rows.



146
147
148
# File 'lib/gherkin/parser/parser.rb', line 146

def rows
  @rows
end

Instance Method Details

#eofObject



159
160
# File 'lib/gherkin/parser/parser.rb', line 159

def eof
end

#row(row, line_number) ⇒ Object



155
156
157
# File 'lib/gherkin/parser/parser.rb', line 155

def row(row, line_number)
  @rows << row
end

#uri(uri) ⇒ Object



152
153
# File 'lib/gherkin/parser/parser.rb', line 152

def uri(uri)
end