
org.opalj.br.instructions.ILoadInstruction.scala Maven / Gradle / Ivy
The newest version!
/* BSD 2-Clause License - see OPAL/LICENSE for details. */
package org.opalj
package br
package instructions
/**
* Load int from local variable.
*
* @author Michael Eichberg
*/
trait ILoadInstruction extends LoadLocalVariableInstruction {
final def computationalType: ComputationalType = ComputationalTypeInt
final def stackSlotsChange: Int = +1
}
trait ConstantIndexILoadInstruction
extends ILoadInstruction
with ImplicitLocalVariableIndex
with InstructionMetaInformation
© 2015 - 2025 Weber Informatics LLC | Privacy Policy