class SFRP::Low::Member

Public Class Methods

new(str) click to toggle source
# File lib/sfrp/low/element.rb, line 87
def initialize(str)
  @str = str
end

Public Instance Methods

pretty_code(indent = 0) click to toggle source
# File lib/sfrp/low/element.rb, line 91
def pretty_code(indent = 0)
  '  ' * indent + @str + ';'
end