Flowdock
method

compile_etag

Importance_0
v2_5_5 - Show latest stable - 0 notes - Class: ERB::Compiler
compile_etag(etag, out, scanner) 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 635
    def compile_etag(etag, out, scanner)
      case etag
      when '%>'
        compile_content(scanner.stag, out)
        scanner.stag = nil
        self.content = +''
      when '%%>'
        content << '%>'
      else
        content << etag
      end
    end
Register or log in to add new notes.