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

Method hasOuterName

src/main/java/matcher/type/ClassInstance.java:1139–1141  ·  view source on GitHub ↗
(String name)

Source from the content-addressed store, hash-verified

1137 }
1138
1139 public static boolean hasOuterName(String name) {
1140 return hasOuterName(name, name.indexOf('$'));
1141 }
1142
1143 private static boolean hasOuterName(String name, int sepPos) {
1144 return sepPos > 0 && name.charAt(sepPos - 1) != '/'; // ignore names starting with $

Callers 6

visitDstNameMethod · 0.95
getNameMethod · 0.95
getInnerName0Method · 0.95
setMappedNameMethod · 0.95
setAuxNameMethod · 0.95
getOuterNameMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected