remove instance_get instruction

This commit is contained in:
Torsten Ruger
2015-10-10 11:17:04 +03:00
parent 4334b68736
commit 8642207158
5 changed files with 1 additions and 32 deletions

View File

@ -1,13 +0,0 @@
module Virtual
# Get a instance variable by _name_ . So we have to resolve the name to an index to
# transform into a Slot
# The slot may the be used in a set on left or right hand.
# The transformation is done by GetImplementation
class InstanceGet < Instruction
def initialize name
@name = name.to_sym
end
attr_reader :name
end
end