MCPcopy Create free account
hub / github.com/LFYSec/MScan / equals

Method equals

src/main/java/pascal/taie/analysis/dataflow/fact/MapFact.java:146–156  ·  view source on GitHub ↗
(Object o)

Source from the content-addressed store, hash-verified

144 }
145
146 @Override
147 public boolean equals(Object o) {
148 if (this == o) {
149 return true;
150 }
151 if (o == null || getClass() != o.getClass()) {
152 return false;
153 }
154 MapFact<?, ?> that = (MapFact<?, ?>) o;
155 return map.equals(that.map);
156 }
157
158 @Override
159 public int hashCode() {

Callers 5

analyzeMethod · 0.45
initializeMethod · 0.45
visitMethod · 0.45
transferCallEdgeMethod · 0.45
updateMethod · 0.45

Calls 1

getClassMethod · 0.65

Tested by

no test coverage detected