Class: Gherkin::ParserContext
- Defined in:
- lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/cucumber-gherkin-23.0.1/lib/gherkin/parser.rb
Instance Attribute Summary collapse
-
#errors ⇒ Object
readonly
Returns the value of attribute errors.
-
#token_matcher ⇒ Object
readonly
Returns the value of attribute token_matcher.
-
#token_queue ⇒ Object
readonly
Returns the value of attribute token_queue.
-
#token_scanner ⇒ Object
readonly
Returns the value of attribute token_scanner.
Instance Method Summary collapse
-
#initialize(token_scanner, token_matcher, token_queue, errors) ⇒ ParserContext
constructor
A new instance of ParserContext.
Constructor Details
#initialize(token_scanner, token_matcher, token_queue, errors) ⇒ ParserContext
Returns a new instance of ParserContext.
48 49 50 51 52 53 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/cucumber-gherkin-23.0.1/lib/gherkin/parser.rb', line 48 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
#errors ⇒ Object (readonly)
Returns the value of attribute errors.
46 47 48 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/cucumber-gherkin-23.0.1/lib/gherkin/parser.rb', line 46 def errors @errors end |
#token_matcher ⇒ Object (readonly)
Returns the value of attribute token_matcher.
46 47 48 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/cucumber-gherkin-23.0.1/lib/gherkin/parser.rb', line 46 def token_matcher @token_matcher end |
#token_queue ⇒ Object (readonly)
Returns the value of attribute token_queue.
46 47 48 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/cucumber-gherkin-23.0.1/lib/gherkin/parser.rb', line 46 def token_queue @token_queue end |
#token_scanner ⇒ Object (readonly)
Returns the value of attribute token_scanner.
46 47 48 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/cucumber-gherkin-23.0.1/lib/gherkin/parser.rb', line 46 def token_scanner @token_scanner end |