rubyx/lib/virtual/instructions/set.rb
Torsten Ruger cdf17a73b2 changed Set order
from to seems more logical than to,from
2015-06-21 13:29:27 +03:00

15 lines
407 B
Ruby

module Virtual
# class for Set instructions, A set is basically a mem move.
# to and from are indexes into the known objects(frame,message,self and new_message),
# these are represented as slots (see there)
# from may be a Constant (Object,Integer,String,Class)
class Set < Instruction
def initialize from , to
@from = from
@to = to
end
attr_reader :from , :to
end
end