Class: ERB::Compiler::SimpleScanner
Overview
:nodoc:
Instance Attribute Summary
Attributes inherited from Scanner
Instance Method Summary collapse
Methods inherited from Scanner
default_scanner=, #initialize, make_scanner, regist_scanner
Constructor Details
This class inherits a constructor from ERB::Compiler::Scanner
Instance Method Details
#scan ⇒ Object
401 402 403 404 405 406 407 408 |
# File 'lib/erb.rb', line 401 def scan @src.scan(/(.*?)(<%%|%%>|<%=|<%#|<%|%>|\n|\z)/m) do |tokens| tokens.each do |token| next if token.empty? yield(token) end end end |