fix register shortcuts

This commit is contained in:
Torsten Ruger
2015-11-21 14:17:54 +02:00
parent 96972dab29
commit 91a0365c2e
3 changed files with 17 additions and 18 deletions

View File

@ -13,9 +13,9 @@ module Register
"OperatorInstruction: #{left} #{operator} #{right}"
end
def self.op source , operator , left , right
OperatorInstruction.new source , operator , left , right
end
end
def self.op source , operator , left , right
OperatorInstruction.new source , operator , left , right
end
end