nitc :: MVirtualTypeProp :: defaultinit
# A global virtual type
class MVirtualTypeProp
super MProperty
redef type MPROPDEF: MVirtualTypeDef
# The formal type associated to the virtual type property
var mvirtualtype = new MVirtualType(self)
# Is `self` the special virtual type `SELF`?
var is_selftype: Bool is lazy do return name == "SELF"
end
src/model/model.nit:2491,1--2502,3