Class: Ripper::TokenPattern

Inherits:
Object
  • Object
show all
Defined in:
lib/ripper/lexer.rb

Overview

:nodoc:

Defined Under Namespace

Classes: CompileError, Error, MatchData, MatchError

Instance Method Summary collapse

Constructor Details

#initialize(pattern) ⇒ TokenPattern

Returns a new instance of TokenPattern.



301
302
303
304
# File 'lib/ripper/lexer.rb', line 301

def initialize(pattern)
  @source = pattern
  @re = compile(pattern)
end

Instance Method Details

#match(str) ⇒ Object



306
307
308
# File 'lib/ripper/lexer.rb', line 306

def match(str)
  match_list(::Ripper.lex(str))
end

#match_list(tokens) ⇒ Object



310
311
312
313
314
315
# File 'lib/ripper/lexer.rb', line 310

def match_list(tokens)
  if m = @re.match(map_tokens(tokens))
  then MatchData.new(tokens, m)
  else nil
  end
end