fun make_unreachable_flow: FlowContext
do
var flow = new FlowContext
flows.add(flow)
flow.node = current_node
flow.add_previous(self.current_flow_context)
flow.is_marked_unreachable = true
self.current_flow_context = flow
return flow
end
src/semantize/flow.nit:154,2--163,4