Class: Ripper::Filter

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

Overview

This class handles only scanner events, which are dispatched in the ‘right’ order (same with input).

Instance Method Summary collapse

Constructor Details

#initialize(src, filename = '-', lineno = 1) ⇒ Filter

Creates a new Ripper::Filter instance, passes parameters src, filename, and lineno to Ripper::Lexer.new

The lexer is for internal use only.



23
24
25
26
27
# File 'lib/ripper/filter.rb', line 23

def initialize(src, filename = '-', lineno = 1)
  @__lexer = Lexer.new(src, filename, lineno)
  @__line = nil
  @__col = nil
end

Instance Method Details

#columnObject

The column number of the current token. This value starts from 0. This method is valid only in event handlers.



44
45
46
# File 'lib/ripper/filter.rb', line 44

def column
  @__col
end

#filenameObject

The file name of the input.



30
31
32
# File 'lib/ripper/filter.rb', line 30

def filename
  @__lexer.filename
end

#linenoObject

The line number of the current token. This value starts from 1. This method is valid only in event handlers.



37
38
39
# File 'lib/ripper/filter.rb', line 37

def lineno
  @__line
end

#parse(init = nil) ⇒ Object

Starts the parser. init is a data accumulator and is passed to the next event handler (as of Enumerable#inject).



51
52
53
54
55
56
57
58
59
60
61
# File 'lib/ripper/filter.rb', line 51

def parse(init = nil)
  data = init
  @__lexer.lex.each do |pos, event, tok|
    @__line, @__col = *pos
    data = if respond_to?(event, true)
           then __send__(event, tok, data)
           else on_default(event, tok, data)
           end
  end
  data
end