Flowdock
scan() public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/erb.rb, line 504
        def scan
          stag_reg = /(.*?)(<%%|<%=|<%#|<%|\z)/
          etag_reg = /(.*?)(%%>|%>|\z)/
          scanner = StringScanner.new(@src)
          while ! scanner.eos?
            scanner.scan(@stag ? etag_reg : stag_reg)
            yield(scanner[1])
            yield(scanner[2])
          end
        end
Register or log in to add new notes.