spelling: undefined

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref
2024-10-22 10:10:40 -04:00
committed by Jindra Petřík
parent 33794e6609
commit cd534ccbe2

View File

@@ -1228,7 +1228,7 @@ public class ASM3Parser {
int exIndex = (Integer) symb.value;
int listIndex = exceptionIndices.indexOf(exIndex);
if (listIndex == -1) {
throw new AVM2ParseException("Undefinex exception index", lexer.yyline());
throw new AVM2ParseException("Undefined exception index", lexer.yyline());
}
exceptions.get(listIndex).start = offset;
continue;
@@ -1237,7 +1237,7 @@ public class ASM3Parser {
int exIndex = (Integer) symb.value;
int listIndex = exceptionIndices.indexOf(exIndex);
if (listIndex == -1) {
throw new AVM2ParseException("Undefinex exception index", lexer.yyline());
throw new AVM2ParseException("Undefined exception index", lexer.yyline());
}
exceptions.get(listIndex).end = offset;
continue;
@@ -1246,7 +1246,7 @@ public class ASM3Parser {
int exIndex = (Integer) symb.value;
int listIndex = exceptionIndices.indexOf(exIndex);
if (listIndex == -1) {
throw new AVM2ParseException("Undefinex exception index", lexer.yyline());
throw new AVM2ParseException("Undefined exception index", lexer.yyline());
}
exceptions.get(listIndex).target = offset;
continue;