Class: ERB::Compiler::PercentLine

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

Overview

:nodoc:

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(str) ⇒ PercentLine

Returns a new instance of PercentLine.



344
345
346
# File 'lib/erb.rb', line 344

def initialize(str)
  @value = str
end

Instance Attribute Details

#valueObject (readonly) Also known as: to_s

Returns the value of attribute value



347
348
349
# File 'lib/erb.rb', line 347

def value
  @value
end

Instance Method Details

#empty?Boolean

Returns:

  • (Boolean)


350
351
352
# File 'lib/erb.rb', line 350

def empty?
  @value.empty?
end