public Operand buildDefn(MethodDefNode node, IRScope s) { // Instance method
Operand container = MetaObject.create(s.getNearestModule());
IRMethod method = defineNewMethod(node, s, container, true);
s.getNearestModule().addMethod(method);
s.addInstr(new DefineInstanceMethodInstr(container, method));
return Nil.NIL;
}