Class: SFRP::Low::Include

Inherits:
Element
  • Object
show all
Defined in:
lib/sfrp/low/element.rb

Instance Method Summary collapse

Methods inherited from Element

#to_s

Constructor Details

#initialize(str) ⇒ Include

Returns a new instance of Include.



117
118
119
# File 'lib/sfrp/low/element.rb', line 117

def initialize(str)
  @str = str
end

Instance Method Details

#pretty_codeObject



121
122
123
# File 'lib/sfrp/low/element.rb', line 121

def pretty_code
  "#include #{@str}"
end