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.



101
102
103
104
# File 'lib/ripper/lexer.rb', line 101

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

Instance Method Details

#match(str) ⇒ Object



106
107
108
# File 'lib/ripper/lexer.rb', line 106

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

#match_list(tokens) ⇒ Object



110
111
112
113
114
115
# File 'lib/ripper/lexer.rb', line 110

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