rubyx/lib/vool/statements/statements.rb

61 lines
1.1 KiB
Ruby
Raw Normal View History

2017-04-01 20:28:57 +02:00
module Vool
class Statements < Statement
attr_reader :statements
def initialize(statements)
@statements = statements
end
def empty?
@statements.empty?
end
def single?
@statements.length == 1
end
def first
@statements.first
end
def last
@statements.last
end
def length
@statements.length
end
def [](i)
@statements[i]
end
def <<(o)
@statements << o
self
end
# create machine instructions
def to_mom( method )
raise "Empty list ? #{statements.length}" unless @statements[0]
flat = @statements.shift.to_mom(method)
while( nekst = @statements.shift )
flat.append nekst.to_mom(method)
end
flat
2017-04-08 11:10:42 +02:00
end
2017-04-09 09:14:28 +02:00
def create_objects
@statements.each{ |s| s.create_objects }
end
def each(&block)
block.call(self)
@statements.each{|a| a.each(&block)}
end
2018-03-15 17:24:03 +01:00
def normalize
Statements.new(@statements.collect{|s| s.normalize})
end
end
class ScopeStatement < Statements
2018-03-15 17:24:03 +01:00
def normalize
ScopeStatement.new(@statements.collect{|s| s.normalize})
end
2017-04-01 20:28:57 +02:00
end
end