self
# Collect all properties redefined in `self`
fun collect_redef_mproperties(filter: nullable ModelFilter): HashSet[MProperty] do
var res = new HashSet[MProperty]
for mgroup in mgroups do
for mmodule in collect_all_mmodules(filter) do
res.add_all mmodule.collect_redef_mproperties(filter)
end
end
return res
end
src/model/model_collect.nit:361,2--370,4