13 lines
222 B
Ruby
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
|