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.



108
109
110
111
# File 'lib/ripper/lexer.rb', line 108

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

Instance Method Details

#match(str) ⇒ Object



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

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

#match_list(tokens) ⇒ Object



117
118
119
120
121
122
# File 'lib/ripper/lexer.rb', line 117

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