rubyx/lib/phisol/compiler/name_expression.rb

27 lines
981 B
Ruby
Raw Normal View History

2015-10-07 14:22:47 +02:00
module Phisol
Compiler.class_eval do
# attr_reader :name
# compiling name needs to check if it's a variable and if so resolve it
# otherwise it's a method without args and a send is issued.
# whichever way this goes the result is stored in the return slot (as all compiles)
def on_name statement
name = statement.to_a.first
return Virtual::Self.new( Virtual::Reference.new(@clazz)) if name == :self
# either an argument, so it's stored in message
if( index = @method.has_arg(name))
2015-10-06 14:26:57 +02:00
type = @method.arguments[index].type
return Virtual::ArgSlot.new(index , type )
else # or a local so it is in the frame
index = @method.has_local( name )
2015-09-27 15:06:48 +02:00
if(index)
2015-10-06 14:26:57 +02:00
type = @method.locals[index].type
return Virtual::FrameSlot.new(index, type )
2015-09-27 15:06:48 +02:00
end
end
2015-10-06 14:26:57 +02:00
raise "must define variable #{name} before using it"
end
end #module
end