Class: Gherkin::ParserContext

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(token_scanner, token_matcher, token_queue, errors) ⇒ ParserContext

Returns a new instance of ParserContext.



49
50
51
52
53
54
# File 'lib/gherkin/parser.rb', line 49

def initialize(token_scanner, token_matcher, token_queue, errors)
  @token_scanner = token_scanner
  @token_matcher = token_matcher
  @token_queue = token_queue
  @errors = errors
end

Instance Attribute Details

#errorsObject (readonly)

Returns the value of attribute errors.



47
48
49
# File 'lib/gherkin/parser.rb', line 47

def errors
  @errors
end

#token_matcherObject (readonly)

Returns the value of attribute token_matcher.



47
48
49
# File 'lib/gherkin/parser.rb', line 47

def token_matcher
  @token_matcher
end

#token_queueObject (readonly)

Returns the value of attribute token_queue.



47
48
49
# File 'lib/gherkin/parser.rb', line 47

def token_queue
  @token_queue
end

#token_scannerObject (readonly)

Returns the value of attribute token_scanner.



47
48
49
# File 'lib/gherkin/parser.rb', line 47

def token_scanner
  @token_scanner
end