2018-06-29 22:46:39 +03:00
|
|
|
module Vool
|
|
|
|
|
2019-08-16 20:39:08 +03:00
|
|
|
# Local assignment really only differs in where the variable is actually stored,
|
|
|
|
# slot_position defines that
|
2018-06-29 22:46:39 +03:00
|
|
|
class LocalAssignment < Assignment
|
|
|
|
|
2019-08-16 20:39:08 +03:00
|
|
|
# We return the position where the local is stored. This is an array, giving the
|
|
|
|
# position relative to :message- A SlotLoad is constructed from this.
|
|
|
|
#
|
|
|
|
# Only snag is that we do not know this position, as only the compiler knows
|
|
|
|
# if the variable name is a local or an arg. So we delegate to the compiler.
|
|
|
|
def slot_position( compiler )
|
2019-08-22 21:24:02 +03:00
|
|
|
slot = compiler.slot_type_for(@name)
|
|
|
|
#puts "SLOT= #{slot}"
|
|
|
|
slot
|
2018-06-29 22:46:39 +03:00
|
|
|
end
|
2019-08-07 15:08:45 +03:00
|
|
|
|
2018-06-29 22:46:39 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|