rubyx/lib/vm/tree/statements.rb

10 lines
183 B
Ruby
Raw Normal View History

2017-01-14 18:28:44 +01:00
module Vm
class Statements < Statement
attr_accessor :statements
2016-12-28 13:11:05 +01:00
def to_s
return "" unless statements
statements.collect() { |s| s.to_s }.join
end
end
end