Property definitions

nitc $ FlowVisitor :: make_merge_flow
	fun make_merge_flow(flow1, flow2: FlowContext): FlowContext
	do
		var flow = new FlowContext
		flows.add(flow)
		flow.node = current_node
		flow.add_previous(flow1)
		flow.add_previous(flow2)
		self.current_flow_context = flow
		return flow
	end
src/semantize/flow.nit:114,2--123,4