public void setUp() throws Exception {
Mod = "def mod(num : Int, over : Int) : Int \n"
+ " num - (over * (num / over)) \n";
List<Param> params = new ArrayList<Param>();
List<Statement> statements = new ArrayList<Statement>();
func = new BytecodeFunction(params,statements,new BytecodeContextImpl(), "");
clas = new BytecodeClass(new BytecodeContextImpl());
clasDef = new BytecodeClass(new BytecodeContextImpl());
empty = new BytecodeEmptyVal();
setupList();
}