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