fixing import order

This commit is contained in:
Torsten Ruger
2014-10-03 14:33:06 +03:00
parent a083c03b1d
commit 1347a85eb7
6 changed files with 11 additions and 12 deletions

View File

@ -9,7 +9,7 @@ module Register
class CallImplementation
def run block
block.codes.dup.each do |code|
next unless code.is_a? Virtual::FunctionCall
next unless code.is_a? Register::FunctionCall
call = RegisterMachine.instance.call( code.method )
block.replace(code , call )
end