Example usage for org.eclipse.jdt.internal.compiler.codegen Opcodes OPC_aload

List of usage examples for org.eclipse.jdt.internal.compiler.codegen Opcodes OPC_aload

Introduction

In this page you can find the example usage for org.eclipse.jdt.internal.compiler.codegen Opcodes OPC_aload.

Prototype

byte OPC_aload

To view the source code for org.eclipse.jdt.internal.compiler.codegen Opcodes OPC_aload.

Click Source Link

Usage

From source file:org.eclipse.objectteams.otdt.internal.core.compiler.bytecode.BytecodeTransformer.java

License:Open Source License

/** Perform changes to code sequence produced by addChainingPlaceholder(). */
private void replaceChainArg(byte[] codeToAdjust, int idx) {
    codeToAdjust[idx] = Opcodes.OPC_nop;
    codeToAdjust[idx + 1] = Opcodes.OPC_aload;
    // argument to aload remains unchanged from astore
}