[Source]
# File erb.rb, line 159 def scan @src.each do |line| line.split(SplitRegexp).each do |token| next if token.empty? yield(token) end end end
[Validate]