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

Method isSynthetic

src/main/java/groovy/lang/MetaMember.java:104–104  ·  view source on GitHub ↗

Indicates whether this member is synthetic from the JVM's perspective. @return true if the synthetic modifier bit is present

()

Source from the content-addressed store, hash-verified

102 * @return {@code true} if the synthetic modifier bit is present
103 */
104 default boolean isSynthetic() {
105 return (getModifiers() & /*Modifier.SYNTHETIC*/0x1000) != 0;
106 }
107

Callers 15

getPropertiesMethod · 0.65
getClosureSignaturesMethod · 0.65
configureClassNodeMethod · 0.65
chooseMetaMethod · 0.65
printMethodsMethod · 0.65
printMethodMethod · 0.65
addPhaseOperationsMethod · 0.65
callMethod · 0.65
filterMethodsMethod · 0.65
classShouldBeIgnoredMethod · 0.65
isSyntheticMethod · 0.65

Implementers 3

MetaMethodsrc/main/java/groovy/lang/MetaMethod.j
MetaPropertysrc/main/java/groovy/lang/MetaProperty
CachedConstructorsrc/main/java/org/codehaus/groovy/refl

Calls

no outgoing calls

Tested by

no test coverage detected