String moduleName = cpath.getName();
Operand container = getContainerFromCPath(cpath, s);
// Build the new module
IRModule m = new IRModule(s, container, moduleName, moduleNode.getScope());
s.getNearestModule().getRootMethod().addInstr(new DefineModuleInstr((ModuleMetaObject) MetaObject.create(m)));
s.getNearestModule().addModule(m);
build(moduleNode.getBodyNode(), m.getRootMethod());
return Nil.NIL;