Class: Gherkin::Lexer::I18nLexer

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(listener, force_ruby = false) ⇒ I18nLexer

Returns a new instance of I18nLexer.



17
18
19
20
# File 'lib/gherkin/lexer/i18n_lexer.rb', line 17

def initialize(listener, force_ruby=false)
  @listener = listener
  @force_ruby = force_ruby
end

Instance Attribute Details

#i18n_languageObject (readonly)

Returns the value of attribute i18n_language.



15
16
17
# File 'lib/gherkin/lexer/i18n_lexer.rb', line 15

def i18n_language
  @i18n_language
end

Instance Method Details

#scan(source) ⇒ Object



22
23
24
# File 'lib/gherkin/lexer/i18n_lexer.rb', line 22

def scan(source)
  create_delegate(source).scan(source)
end