blow up if try to parse an array, its not implemented yet

This commit is contained in:
zongor 2024-05-27 19:16:16 -04:00
parent b51666890c
commit 7d020a9288
1 changed files with 1 additions and 0 deletions

View File

@ -154,6 +154,7 @@ for (const type of Object.keys(schema)) {
cData += `\n\t\t${types[propType].c} ${prop};`; cData += `\n\t\t${types[propType].c} ${prop};`;
break; break;
case "array": case "array":
throw new Error("Not Implemented!");
break; break;
default: default:
break; break;