Add a previous flow (iff it is reachable)

Property definitions

nitc $ FlowContext :: add_previous
	# Add a previous flow (iff it is reachable)
	private fun add_previous(flow: FlowContext)
	do
		if not flow.is_unreachable and not previous.has(flow) then
			previous.add(flow)
		end
	end
src/semantize/flow.nit:231,2--237,4