nitc :: Model :: defaultinit
# The container class of a Nit object-oriented model.
# A model knows modules, classes and properties and can retrieve them.
class Model
super MEntity
redef fun model do return self
# Place-holder object that means no-location
#
# See `MEntity::location`
var no_location = new Location(null, 0, 0, 0, 0)
end
src/model/model_base.nit:21,1--32,3