start with some slot definition tests

This commit is contained in:
Torsten Ruger
2018-05-15 19:29:27 +03:00
parent 000bf0a9b3
commit 473866e76b
3 changed files with 80 additions and 0 deletions

View File

@ -0,0 +1,13 @@
require_relative '../helper'
module Mom
class CompilerMock
def use_reg( type )
Risc.tmp_reg(type , nil)
end
def add_constant(c)
end
end
class InstructionMock < Instruction
end
end