Expand description
Propagate Qualifs between locals and query the results.
This contains the dataflow analysis used to track Qualifs on complex control-flow graphs.
Structsยง
- Flow
Sensitive ๐Analysis - The dataflow analysis used to propagate qualifs on arbitrary CFGs.
- State ๐
- The state for the
FlowSensitiveAnalysisdataflow analysis. This domain is likely homogeneous, and has a big size, so we use a bitset that can be sparse (c.f. issue #134404). - Transfer
Function ๐ - A
Visitorthat propagates qualifs between locals. This defines the transfer function ofFlowSensitiveAnalysis.