MethodAnalyzerpublic interface IFilterOutput
| Modifier and Type | Method | Description |
|---|---|---|
void |
ignore(org.objectweb.asm.tree.AbstractInsnNode fromInclusive,
org.objectweb.asm.tree.AbstractInsnNode toInclusive) |
Marks sequence of instructions that should be ignored during computation
of coverage.
|
void |
merge(org.objectweb.asm.tree.AbstractInsnNode i1,
org.objectweb.asm.tree.AbstractInsnNode i2) |
Marks two instructions that should be merged during computation of
coverage.
|
void ignore(org.objectweb.asm.tree.AbstractInsnNode fromInclusive,
org.objectweb.asm.tree.AbstractInsnNode toInclusive)
fromInclusive - first instruction that should be ignored, inclusivetoInclusive - last instruction coming after fromInclusive that
should be ignored, inclusivevoid merge(org.objectweb.asm.tree.AbstractInsnNode i1,
org.objectweb.asm.tree.AbstractInsnNode i2)
i1 - first instructioni2 - second instructionCopyright © 2018. All rights reserved.