class SFRP::Low::Statement

Public Class Methods

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

Public Instance Methods

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