All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.pitest.mutationtest.build.intercept.Region Maven / Gradle / Ivy

There is a newer version: 1.17.4
Show newest version
package org.pitest.mutationtest.build.intercept;

import org.objectweb.asm.tree.AbstractInsnNode;

public class Region {
    public final AbstractInsnNode start;
    public final AbstractInsnNode end;
    public Region(AbstractInsnNode start, AbstractInsnNode end) {
        this.start = start;
        this.end = end;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy