Class: ERB::Compiler::Buffer
- Inherits:
-
Object
- Object
- ERB::Compiler::Buffer
- Defined in:
- lib/erb.rb
Overview
:nodoc:
Instance Attribute Summary collapse
-
#script ⇒ Object
readonly
Returns the value of attribute script.
Instance Method Summary collapse
- #close ⇒ Object
- #cr ⇒ Object
-
#initialize(compiler, enc = nil, frozen = nil) ⇒ Buffer
constructor
A new instance of Buffer.
- #push(cmd) ⇒ Object
Constructor Details
#initialize(compiler, enc = nil, frozen = nil) ⇒ Buffer
Returns a new instance of Buffer.
540 541 542 543 544 545 546 547 548 549 |
# File 'lib/erb.rb', line 540 def initialize(compiler, enc=nil, frozen=nil) @compiler = compiler @line = [] @script = +'' @script << "#coding:#{enc}\n" if enc @script << "#frozen-string-literal:#{frozen}\n" unless frozen.nil? @compiler.pre_cmd.each do |x| push(x) end end |
Instance Attribute Details
#script ⇒ Object (readonly)
Returns the value of attribute script.
550 551 552 |
# File 'lib/erb.rb', line 550 def script @script end |
Instance Method Details
#close ⇒ Object
562 563 564 565 566 567 568 569 |
# File 'lib/erb.rb', line 562 def close return unless @line @compiler.post_cmd.each do |x| push(x) end @script << (@line.join('; ')) @line = nil end |
#cr ⇒ Object
556 557 558 559 560 |
# File 'lib/erb.rb', line 556 def cr @script << (@line.join('; ')) @line = [] @script << "\n" end |
#push(cmd) ⇒ Object
552 553 554 |
# File 'lib/erb.rb', line 552 def push(cmd) @line << cmd end |