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

Method equals

src/main/java/pascal/taie/ir/exp/MethodType.java:71–82  ·  view source on GitHub ↗
(Object o)

Source from the content-addressed store, hash-verified

69 }
70
71 @Override
72 public boolean equals(Object o) {
73 if (this == o) {
74 return true;
75 }
76 if (o == null || getClass() != o.getClass()) {
77 return false;
78 }
79 MethodType that = (MethodType) o;
80 return paramTypes.equals(that.paramTypes) &&
81 returnType.equals(that.returnType);
82 }
83
84 @Override
85 public int hashCode() {

Callers 7

isThisOrParamMethod · 0.45
getVarMethod · 0.45
IRBuildHelperMethod · 0.45
validateMethod · 0.45
validateMethod · 0.45
holdsLongMethod · 0.45

Calls 1

getClassMethod · 0.65

Tested by

no test coverage detected