Class KotlinGeneratedFilter
- java.lang.Object
-
- org.jacoco.core.internal.analysis.filter.KotlinGeneratedFilter
-
-
Field Summary
Fields Modifier and Type Field Description (package private) static java.lang.String
KOTLIN_METADATA_DESC
-
Constructor Summary
Constructors Constructor Description KotlinGeneratedFilter()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
filter(org.objectweb.asm.tree.MethodNode methodNode, IFilterContext context, IFilterOutput output)
This method is called for every method.private boolean
hasLineNumber(org.objectweb.asm.tree.MethodNode methodNode)
(package private) static boolean
isKotlinClass(IFilterContext context)
-
-
-
Field Detail
-
KOTLIN_METADATA_DESC
static final java.lang.String KOTLIN_METADATA_DESC
- See Also:
- Constant Field Values
-
-
Method Detail
-
isKotlinClass
static boolean isKotlinClass(IFilterContext context)
-
filter
public void filter(org.objectweb.asm.tree.MethodNode methodNode, IFilterContext context, IFilterOutput output)
Description copied from interface:IFilter
This method is called for every method. The filter implementation is expected to inspect the provided method and report its result to the givenIFilterOutput
instance.
-
hasLineNumber
private boolean hasLineNumber(org.objectweb.asm.tree.MethodNode methodNode)
-
-