rubyx/lib/virtual/instructions/method_call.rb

13 lines
222 B
Ruby
Raw Normal View History

2015-05-06 07:55:14 +02:00
module Virtual
# MethodCall involves shuffling some registers about and doing a machine call
class MethodCall < Instruction
def initialize method
@method = method
end
attr_reader :method
end
end