MCPcopy Create free account
hub / github.com/FabricMC/Matcher / equals

Method equals

src/main/java/matcher/type/Analysis.java:1950–1958  ·  view source on GitHub ↗
(Object obj)

Source from the content-addressed store, hash-verified

1948 }
1949
1950 @Override
1951 public boolean equals(Object obj) {
1952 if (!(obj instanceof ExecState)) return false;
1953
1954 ExecState o = (ExecState) obj;
1955
1956 return Arrays.equals(locals, o.locals)
1957 && Arrays.equals(stack, o.stack);
1958 }
1959
1960 @Override
1961 public int hashCode() {

Callers 4

updateStateMethod · 0.95
equalsMethod · 0.45
createLocalVariablesMethod · 0.45
checkInitializerMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected