Property definitions

nitc $ CmdChildren :: defaultinit
# MEntity children command
class CmdChildren
	super CmdInheritance

	redef fun init_results do
		if results != null then return new CmdSuccess

		var res = super
		if not res isa CmdSuccess then return res
		var mentity = self.mentity.as(not null)

		results = mentity.collect_children(mainmodule, filter).to_a
		return res
	end
end
src/doc/commands/commands_model.nit:177,1--191,3