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

com.github.fburato.highwheelmodules.bytecodeparser.package.scala Maven / Gradle / Ivy

The newest version!
package com.github.fburato.highwheelmodules

import com.github.fburato.highwheelmodules.model.bytecode.ElementName
import org.objectweb.asm.Type

package object bytecodeparser {
  def getElementNameForType(asmType: Type): ElementName =
    if (asmType.getSort == Type.ARRAY) {
      ElementName.fromString(asmType.getElementType.getClassName)
    } else {
      ElementName.fromString(asmType.getClassName)
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy