Class: Ripper::Filter
Relationships & Source Files | |
Inherits: | Object |
Defined in: | ext/ripper/lib/ripper/filter.rb |
Overview
This class handles only scanner events, which are dispatched in the 'right' order (same with input).
Class Method Summary
- .new(src, filename = '-', lineno = 1) ⇒ Filter constructor
Instance Method Summary
-
#column
The column number of the current token.
-
#filename
The file name of the input.
-
#lineno
The line number of the current token.
-
#parse(init = nil)
Starts the parser.
-
#on_default(event, token, data)
private
This method is called when some event handler is undefined.
Constructor Details
.new(src, filename = '-', lineno = 1) ⇒ Filter
Instance Method Details
#column
The column number of the current token. This value starts from 0. This method is valid only in event handlers.
# File 'ext/ripper/lib/ripper/filter.rb', line 45
def column @__col end
#filename
The file name of the input.
# File 'ext/ripper/lib/ripper/filter.rb', line 31
def filename @__lexer.filename end
#lineno
The line number of the current token. This value starts from 1. This method is valid only in event handlers.
# File 'ext/ripper/lib/ripper/filter.rb', line 38
def lineno @__line end
#on_default(event, token, data) (private)
This method is called when some event handler is undefined. event
is :on_XXX
, token
is the scanned token, and data
is a data accumulator.
The return value of this method is passed to the next event handler (as of Enumerable#inject
).
# File 'ext/ripper/lib/ripper/filter.rb', line 72
def on_default(event, token, data) data end
#parse(init = nil)
Starts the parser. init
is a data accumulator and is passed to the next event handler (as of Enumerable#inject
).
# File 'ext/ripper/lib/ripper/filter.rb', line 52
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