This commit is contained in:
庄黛淳华 2024-03-06 14:23:55 +08:00 коммит произвёл GitHub
Родитель 6cd972e484
Коммит b39559a7d2
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
3 изменённых файлов: 12 добавлений и 4 удалений

4
package-lock.json сгенерированный
Просмотреть файл

@ -1,12 +1,12 @@
{
"name": "ts-gyb",
"version": "0.10.0",
"version": "0.10.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "ts-gyb",
"version": "0.10.0",
"version": "0.10.1",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.1",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "ts-gyb",
"version": "0.10.0",
"version": "0.10.1",
"description": "Generate Native API based on TS interface",
"repository": {
"type": "git",

Просмотреть файл

@ -245,5 +245,13 @@ function recursiveVisitMembersType(
return;
}
console.log(`Unhandled value type ${JSON.stringify(valueType)}`);
if (valueType.kind === ValueTypeKind.basicType) {
// string, boolean, etc.
return;
}
if (valueType.kind === ValueTypeKind.predefinedType) {
// CodeGen_Int, etc.
return;
}
throw Error(`Unhandled value type ${JSON.stringify(valueType)}`);
}