Class: ERB::Compiler::Buffer

Inherits:
Object
  • Object
show all
Defined in:
lib/erb.rb

Overview

:nodoc:

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(compiler, enc = nil) ⇒ Buffer

Returns a new instance of Buffer.



548
549
550
551
552
553
554
555
# File 'lib/erb.rb', line 548

def initialize(compiler, enc=nil)
  @compiler = compiler
  @line = []
  @script = enc ? "#coding:#{enc.to_s}\n" : ""
  @compiler.pre_cmd.each do |x|
    push(x)
  end
end

Instance Attribute Details

#scriptObject (readonly)

Returns the value of attribute script



556
557
558
# File 'lib/erb.rb', line 556

def script
  @script
end

Instance Method Details

#closeObject



568
569
570
571
572
573
574
575
# File 'lib/erb.rb', line 568

def close
  return unless @line
  @compiler.post_cmd.each do |x|
    push(x)
  end
  @script << (@line.join('; '))
  @line = nil
end

#crObject



562
563
564
565
566
# File 'lib/erb.rb', line 562

def cr
  @script << (@line.join('; '))
  @line = []
  @script << "\n"
end

#push(cmd) ⇒ Object



558
559
560
# File 'lib/erb.rb', line 558

def push(cmd)
  @line << cmd
end