Expand description
Propagate Qualif
s between locals and query the results.
This contains the dataflow analysis used to track Qualif
s on complex control-flow graphs.
Structsยง
- The dataflow analysis used to propagate qualifs on arbitrary CFGs.
- State ๐The state for the
FlowSensitiveAnalysis
dataflow 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 ๐AVisitor
that propagates qualifs between locals. This defines the transfer function ofFlowSensitiveAnalysis
.