for (FlowElement element : FlowGraphUtil.collectFlowParts(graph)) {
// first, inlines nested flow parts
FlowPartDescription desc = (FlowPartDescription) element.getDescription();
inlineFlowParts(desc.getFlowGraph());
Inline inlineConfig = element.getAttribute(Inline.class);
if (inlineConfig == null || inlineConfig == Inline.DEFAULT) {
inlineConfig = options.isCompressFlowPart()
? Inline.FORCE_AGGREGATE
: Inline.KEEP_SEGREGATED;
}