2017-01-14 18:28:44 +01:00
|
|
|
module Vm
|
2016-12-08 18:38:50 +01:00
|
|
|
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
|
2016-12-08 18:38:50 +01:00
|
|
|
end
|
|
|
|
end
|