nitc :: MClass :: collect_redef_vts
self
# Collect all virtual types redefined in `self`
fun collect_redef_vts(filter: nullable ModelFilter): Set[MVirtualTypeProp] do
var res = new HashSet[MVirtualTypeProp]
for mproperty in collect_intro_mproperties(filter) do
if mproperty isa MVirtualTypeProp then res.add(mproperty)
end
return res
end
src/model/model_collect.nit:930,2--937,4