Make recursive structures possible

This commit is contained in:
K35
2022-01-18 10:27:49 +00:00
parent bea91800d6
commit f3a2eb0fab
3 changed files with 3 additions and 3 deletions

View File

@ -9905,7 +9905,7 @@ function get_ir(parsed) {
throw new IRError(field, "Invalid statement!");
}
if (defined.indexOf(field.fieldtype) < 0) {
if (builtin.indexOf(field.fieldtype) < 0) {
if (builtin.indexOf(field.fieldtype) < 0 && field.fieldtype !== field.name) {
throw new IRError(field, `Type ${field.fieldtype} is not defined!`);
}
} else {