nitc :: MClass :: collect_intro_mmethods
self
# Collect all methods introduced in `self`
fun collect_intro_mmethods(filter: nullable ModelFilter): Set[MMethod] do
var res = new HashSet[MMethod]
for mproperty in collect_intro_mproperties(filter) do
if mproperty isa MMethod then res.add(mproperty)
end
return res
end
src/model/model_collect.nit:783,2--790,4