MCPcopy Index your code
hub / github.com/apache/groovy / isSpecialProperty

Method isSpecialProperty

src/main/java/groovy/lang/MetaClassImpl.java:2348–2350  ·  view source on GitHub ↗

Object#getClass and Map#isEmpty

(final String name)

Source from the content-addressed store, hash-verified

2346 * Object#getClass and Map#isEmpty
2347 */
2348 private boolean isSpecialProperty(final String name) {
2349 return "class".equals(name) || (isMap && "empty".equals(name));
2350 }
2351
2352 private boolean isVisibleProperty(final MetaProperty field, final MetaMethod method, final Class<?> sender) {
2353 if (field == null

Callers 4

getPropertyMethod · 0.95
getPropertiesMethod · 0.95
setPropertyMethod · 0.95

Calls 1

equalsMethod · 0.65

Tested by

no test coverage detected