Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ protected Interpreter(final int api) {
*
* @param insn the bytecode instruction to be interpreted.
* @return the result of the interpretation of the given instruction.
* @throws AnalyzerException if an error occured during the interpretation.
* @throws AnalyzerException if an error occurred during the interpretation.
*/
public abstract V newOperation(AbstractInsnNode insn) throws AnalyzerException;

Expand All @@ -100,7 +100,7 @@ protected Interpreter(final int api) {
* @param value the value that must be moved by the instruction.
* @return the result of the interpretation of the given instruction. The returned value must be
* <tt>equal</tt> to the given value.
* @throws AnalyzerException if an error occured during the interpretation.
* @throws AnalyzerException if an error occurred during the interpretation.
*/
public abstract V copyOperation(AbstractInsnNode insn, V value) throws AnalyzerException;

Expand All @@ -116,7 +116,7 @@ protected Interpreter(final int api) {
* @param insn the bytecode instruction to be interpreted.
* @param value the argument of the instruction to be interpreted.
* @return the result of the interpretation of the given instruction.
* @throws AnalyzerException if an error occured during the interpretation.
* @throws AnalyzerException if an error occurred during the interpretation.
*/
public abstract V unaryOperation(AbstractInsnNode insn, V value) throws AnalyzerException;

Expand All @@ -134,7 +134,7 @@ protected Interpreter(final int api) {
* @param value1 the first argument of the instruction to be interpreted.
* @param value2 the second argument of the instruction to be interpreted.
* @return the result of the interpretation of the given instruction.
* @throws AnalyzerException if an error occured during the interpretation.
* @throws AnalyzerException if an error occurred during the interpretation.
*/
public abstract V binaryOperation(AbstractInsnNode insn, V value1, V value2)
throws AnalyzerException;
Expand All @@ -150,7 +150,7 @@ public abstract V binaryOperation(AbstractInsnNode insn, V value1, V value2)
* @param value2 the second argument of the instruction to be interpreted.
* @param value3 the third argument of the instruction to be interpreted.
* @return the result of the interpretation of the given instruction.
* @throws AnalyzerException if an error occured during the interpretation.
* @throws AnalyzerException if an error occurred during the interpretation.
*/
public abstract V ternaryOperation(AbstractInsnNode insn, V value1, V value2, V value3)
throws AnalyzerException;
Expand All @@ -165,7 +165,7 @@ public abstract V ternaryOperation(AbstractInsnNode insn, V value1, V value2, V
* @param insn the bytecode instruction to be interpreted.
* @param values the arguments of the instruction to be interpreted.
* @return the result of the interpretation of the given instruction.
* @throws AnalyzerException if an error occured during the interpretation.
* @throws AnalyzerException if an error occurred during the interpretation.
*/
public abstract V naryOperation(AbstractInsnNode insn, List<? extends V> values)
throws AnalyzerException;
Expand All @@ -178,7 +178,7 @@ public abstract V naryOperation(AbstractInsnNode insn, List<? extends V> values)
* @param insn the bytecode instruction to be interpreted.
* @param value the argument of the instruction to be interpreted.
* @param expected the expected return type of the analyzed method.
* @throws AnalyzerException if an error occured during the interpretation.
* @throws AnalyzerException if an error occurred during the interpretation.
*/
public abstract void returnOperation(AbstractInsnNode insn, V value, V expected)
throws AnalyzerException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ public class MethodInsnNode extends AbstractInsnNode {
/**
* The internal name of the method's owner class (see {@link
* org.objectweb.asm.Type#getInternalName()}).
*
* For methods of arrays, e.g., <tt>clone()</tt>, the array type descriptor.
*/
public String owner;

Expand Down