rubyx/lib/vool/statements/variables.rb
Torsten Ruger 78ef1368de introducing expressions and constants
not everything statement anymore (as in ruby)
basic statement tests working, rest havoc
2018-03-15 11:24:14 +05:30

40 lines
744 B
Ruby

module Vool
module Named
attr_reader :name
def initialize name
@name = name
end
end
class LocalVariable < Expression
include Named
def to_mom(method)
if method.args_type.variable_index(@name)
type = :arguments
else
type = :frame
end
Mom::SlotDefinition.new(:message , [type , @name])
end
end
class InstanceVariable < Expression
include Named
def to_mom(method)
Mom::SlotDefinition.new(:message , [ :receiver , @name] )
end
# used to collect type information
def add_ivar( array )
array << @name
end
end
class ClassVariable < Expression
include Named
end
class ModuleName < Expression
include Named
end
end