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.



54
55
56
57
58
59
# File 'lib/gherkin/parser.rb', line 54

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.



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

def errors
  @errors
end

#token_matcherObject (readonly)

Returns the value of attribute token_matcher.



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

def token_matcher
  @token_matcher
end

#token_queueObject (readonly)

Returns the value of attribute token_queue.



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

def token_queue
  @token_queue
end

#token_scannerObject (readonly)

Returns the value of attribute token_scanner.



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

def token_scanner
  @token_scanner
end