
org.opalj.br.instructions.FConstInstruction.scala Maven / Gradle / Ivy
The newest version!
/* BSD 2-Clause License - see OPAL/LICENSE for details. */
package org.opalj
package br
package instructions
/**
* @author Michael Eichberg
*/
trait FConstInstruction extends LoadConstantInstruction[Float] with ImplicitValue {
final override def computationalType = ComputationalTypeFloat
}
object FConstInstruction {
def unapply(instr: FConstInstruction): Option[Float] = Some(instr.value)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy