add try catch

This commit is contained in:
2023-03-28 16:00:17 +01:00
parent 5a785cbbc6
commit efd43ad72d
5 changed files with 91 additions and 4 deletions

View File

@@ -42,6 +42,8 @@ func translateVal(code UNPARSEcode, index int, codelines []UNPARSEcode, isLine i
return parseForLoop(code, index, codelines)
} else if isGenericImport(code) {
return parseGenericImport(code, index, codelines)
} else if isTryCatch(code) {
return parseTryCatch(code, index, codelines)
}
}