Searched defs:AbstractInsnNode (Results 1 – 3 of 3) sorted by relevance
11 val AbstractInsnNode.line: Int? constant20 fun AbstractInsnNode.atIndex(insnList: InsnList?): String { in atIndex() method31 val AbstractInsnNode.nextUseful: AbstractInsnNode? constant38 val AbstractInsnNode?.thisOrPrevUseful: AbstractInsnNode? constant45 private fun AbstractInsnNode?.isUseless() = this is LabelNode || this is LineNumberNode || this is … in AbstractInsnNode() method57 fun AbstractInsnNode.isAload(index: Int) = in AbstractInsnNode() method60 fun AbstractInsnNode.isGetField(owner: String) = in AbstractInsnNode() method63 fun AbstractInsnNode.isGetStatic(owner: String) = in AbstractInsnNode() method66 fun AbstractInsnNode.isAreturn() = in AbstractInsnNode() method69 fun AbstractInsnNode.isReturn() = in AbstractInsnNode() method[all …]
79 private fun AbstractInsnNode?.isArrayStore(): Boolean = when(this?.opcode) { in AbstractInsnNode() method
54 final Map<AbstractInsnNode, Instruction> instructions) { in MethodCoverageCalculator()