2014-06-14 20:29:57 +02:00
|
|
|
module Vm
|
2014-06-14 22:48:12 +02:00
|
|
|
class Reference < Word
|
2014-06-14 20:29:57 +02:00
|
|
|
# needs to be here as Word's constructor is private (to make it abstract)
|
2014-06-24 11:36:32 +02:00
|
|
|
def initialize reg , clazz = nil
|
|
|
|
super(reg)
|
|
|
|
@clazz = clazz
|
2014-06-14 20:29:57 +02:00
|
|
|
end
|
2014-06-24 11:36:32 +02:00
|
|
|
attr_accessor :clazz
|
2014-06-14 20:29:57 +02:00
|
|
|
|
|
|
|
end
|
|
|
|
end
|