method
scan
scan()
public
Hide source
# File lib/erb.rb, line 395 def scan @src.each do |line| line.split(SplitRegexp).each do |token| next if token.empty? yield(token) end end end