Process the given phase on the npropdef

Called by run_phases

Property definitions

nitc :: phase $ ToolContext :: phase_process_npropdef
	# Process the given `phase` on the `npropdef`
	# Called by `run_phases`
	protected fun phase_process_npropdef(phase: Phase, npropdef: APropdef)
	do
		phase.process_npropdef(npropdef)
	end
src/phase.nit:160,2--165,4

nitc :: nitpick $ ToolContext :: phase_process_npropdef
	redef fun phase_process_npropdef(phase, npropdef)
	do
		var pd = npropdef.mpropdef

		# Do not analyze the property bodies outside specified modules
		if pd != null and not mmodules_to_check.has(pd.mclassdef.mmodule) then return
		super
	end
src/nitpick.nit:24,2--31,4