rubyx/lib/virtual/instructions/method_call.rb
2015-05-06 08:55:14 +03:00

13 lines
222 B
Ruby

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