001package gudusoft.gsqlparser.ir.builder;
002
003/**
004 * Aggregation root for the Flow IR phase output.
005 * <p>
006 * Contains CFG, DFG, CallGraph, and ProvenanceGraph.
007 * Phase C implementation.
008 */
009public class FlowBundle {
010
011    // Phase C: List<CfgGraph> cfgGraphs
012    // Phase C: List<DfgGraph> dfgGraphs
013    // Phase C: CallGraph callGraph
014    // Phase C: ProvenanceGraph provenanceGraph
015
016    public FlowBundle() {
017        // Empty shell for Phase A
018    }
019
020    @Override
021    public String toString() {
022        return "FlowBundle{}";
023    }
024}