nitc :: FlowVisitor :: make_sub_flow
fun make_sub_flow: FlowContext
do
var flow = new FlowContext
flows.add(flow)
flow.node = current_node
flow.add_previous(self.current_flow_context)
self.current_flow_context = flow
return flow
end
src/semantize/flow.nit:104,2--112,4