Merge branch 'develop' into feature-nested-sets

This commit is contained in:
ThaumRystra
2023-11-11 10:01:34 +02:00
40 changed files with 562 additions and 394 deletions

View File

@@ -19,7 +19,9 @@ const array = {
) {
return constant.create({ value, valueType });
} else {
throw `Unexpected type in constant array: ${valueType}`
// Gracefully create an empty spot in the array for unsupported types
return undefined;
// throw `Unexpected type in constant array: ${valueType}`
}
});
return array.create({ values });