# Process all introduced methods and compile some linking information (if needed)
fun link_mmethods
do
if not modelbuilder.toolcontext.opt_substitute_monomorph.value and not modelbuilder.toolcontext.opt_guard_call.value then return
for mmodule in mainmodule.in_importation.greaters do
for cd in mmodule.mclassdefs do
for m in cd.intro_mproperties do
if not m isa MMethod then continue
link_mmethod(m)
end
end
end
end
src/compiler/separate_compiler.nit:663,2--676,4