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

org.opalj.br.instructions.NonVirtualMethodInvocationInstruction.scala Maven / Gradle / Ivy

The newest version!
/* BSD 2-Clause License - see OPAL/LICENSE for details. */
package org.opalj
package br
package instructions

/**
 * Invocation of a method where the target method is statically resolved.
 *
 * @author Michael Eichberg
 */
abstract class NonVirtualMethodInvocationInstruction
    extends MethodInvocationInstruction
    with InstructionMetaInformation {

    override def isVirtualMethodCall: Boolean = false

    def asINVOKESTATIC: INVOKESTATIC

    def asINVOKESPECIAL: INVOKESPECIAL

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy