Class: Gherkin::Lexer::I18nLexer
- Inherits:
-
Object
- Object
- Gherkin::Lexer::I18nLexer
- Defined in:
- lib/gherkin/lexer/i18n_lexer.rb
Overview
The main entry point to lexing Gherkin source.
Constant Summary collapse
- COMMENT_OR_EMPTY_LINE_PATTERN =
/^\s*#|^\s*$/
- LANGUAGE_PATTERN =
:nodoc:
/^\s*#\s*language\s*:\s*([a-zA-Z\-]+)/
Instance Attribute Summary collapse
-
#i18n_language ⇒ Object
readonly
Returns the value of attribute i18n_language.
Instance Method Summary collapse
-
#initialize(listener, force_ruby = false) ⇒ I18nLexer
constructor
A new instance of I18nLexer.
- #scan(source) ⇒ Object
Constructor Details
#initialize(listener, force_ruby = false) ⇒ I18nLexer
Returns a new instance of I18nLexer.
16 17 18 19 |
# File 'lib/gherkin/lexer/i18n_lexer.rb', line 16 def initialize(listener, force_ruby=false) @listener = listener @force_ruby = force_ruby end |
Instance Attribute Details
#i18n_language ⇒ Object (readonly)
Returns the value of attribute i18n_language.
14 15 16 |
# File 'lib/gherkin/lexer/i18n_lexer.rb', line 14 def i18n_language @i18n_language end |
Instance Method Details
#scan(source) ⇒ Object
21 22 23 |
# File 'lib/gherkin/lexer/i18n_lexer.rb', line 21 def scan(source) create_delegate(source).scan(source) end |