pub trait FootprintDomain: AbstractDomain + Clone + Debug + PartialEq + Sized {
fn make_footprint(ap: AccessPath) -> Option<Self>;
}
Expand description
Trait for an abstract domain that can represent footprint values
Required Methods
fn make_footprint(ap: AccessPath) -> Option<Self>
fn make_footprint(ap: AccessPath) -> Option<Self>
Create a footprint value for access path ap