rubyx/lib/vm/tree/statements.rb
2017-01-14 19:28:44 +02:00

10 lines
183 B
Ruby

module Vm
class Statements < Statement
attr_accessor :statements
def to_s
return "" unless statements
statements.collect() { |s| s.to_s }.join
end
end
end