private class ModelizePropertyPhase
super Phase
redef fun process_nmodule(nmodule)
do
for nclassdef in nmodule.n_classdefs do
if nclassdef.all_defs == null then continue # skip non principal classdef
toolcontext.modelbuilder.build_properties(nclassdef)
end
end
end
src/modelize/modelize_property.nit:28,1--37,3