@@ -85,7 +85,7 @@ protected Interpreter(final int api) {
85
85
*
86
86
* @param insn the bytecode instruction to be interpreted.
87
87
* @return the result of the interpretation of the given instruction.
88
- * @throws AnalyzerException if an error occured during the interpretation.
88
+ * @throws AnalyzerException if an error occurred during the interpretation.
89
89
*/
90
90
public abstract V newOperation (AbstractInsnNode insn ) throws AnalyzerException ;
91
91
@@ -100,7 +100,7 @@ protected Interpreter(final int api) {
100
100
* @param value the value that must be moved by the instruction.
101
101
* @return the result of the interpretation of the given instruction. The returned value must be
102
102
* <tt>equal</tt> to the given value.
103
- * @throws AnalyzerException if an error occured during the interpretation.
103
+ * @throws AnalyzerException if an error occurred during the interpretation.
104
104
*/
105
105
public abstract V copyOperation (AbstractInsnNode insn , V value ) throws AnalyzerException ;
106
106
@@ -116,7 +116,7 @@ protected Interpreter(final int api) {
116
116
* @param insn the bytecode instruction to be interpreted.
117
117
* @param value the argument of the instruction to be interpreted.
118
118
* @return the result of the interpretation of the given instruction.
119
- * @throws AnalyzerException if an error occured during the interpretation.
119
+ * @throws AnalyzerException if an error occurred during the interpretation.
120
120
*/
121
121
public abstract V unaryOperation (AbstractInsnNode insn , V value ) throws AnalyzerException ;
122
122
@@ -134,7 +134,7 @@ protected Interpreter(final int api) {
134
134
* @param value1 the first argument of the instruction to be interpreted.
135
135
* @param value2 the second argument of the instruction to be interpreted.
136
136
* @return the result of the interpretation of the given instruction.
137
- * @throws AnalyzerException if an error occured during the interpretation.
137
+ * @throws AnalyzerException if an error occurred during the interpretation.
138
138
*/
139
139
public abstract V binaryOperation (AbstractInsnNode insn , V value1 , V value2 )
140
140
throws AnalyzerException ;
@@ -150,7 +150,7 @@ public abstract V binaryOperation(AbstractInsnNode insn, V value1, V value2)
150
150
* @param value2 the second argument of the instruction to be interpreted.
151
151
* @param value3 the third argument of the instruction to be interpreted.
152
152
* @return the result of the interpretation of the given instruction.
153
- * @throws AnalyzerException if an error occured during the interpretation.
153
+ * @throws AnalyzerException if an error occurred during the interpretation.
154
154
*/
155
155
public abstract V ternaryOperation (AbstractInsnNode insn , V value1 , V value2 , V value3 )
156
156
throws AnalyzerException ;
@@ -165,7 +165,7 @@ public abstract V ternaryOperation(AbstractInsnNode insn, V value1, V value2, V
165
165
* @param insn the bytecode instruction to be interpreted.
166
166
* @param values the arguments of the instruction to be interpreted.
167
167
* @return the result of the interpretation of the given instruction.
168
- * @throws AnalyzerException if an error occured during the interpretation.
168
+ * @throws AnalyzerException if an error occurred during the interpretation.
169
169
*/
170
170
public abstract V naryOperation (AbstractInsnNode insn , List <? extends V > values )
171
171
throws AnalyzerException ;
@@ -178,7 +178,7 @@ public abstract V naryOperation(AbstractInsnNode insn, List<? extends V> values)
178
178
* @param insn the bytecode instruction to be interpreted.
179
179
* @param value the argument of the instruction to be interpreted.
180
180
* @param expected the expected return type of the analyzed method.
181
- * @throws AnalyzerException if an error occured during the interpretation.
181
+ * @throws AnalyzerException if an error occurred during the interpretation.
182
182
*/
183
183
public abstract void returnOperation (AbstractInsnNode insn , V value , V expected )
184
184
throws AnalyzerException ;
0 commit comments