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

org.pitest.bytecode.ASMVersion Maven / Gradle / Ivy

There is a newer version: 1.17.4
Show newest version
package org.pitest.bytecode;

import org.objectweb.asm.Opcodes;

public class ASMVersion {
  public static final int ASM_VERSION = Opcodes.ASM9;

  /**
   * Provide the asm version via a method call so third party plugins built against pitest
   * will receive the current asm version instead of one inlined at build time
   * @return asm version
   */
  public static int asmVersion() {
    return ASM_VERSION;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy