added list default

master
Niclas Thobaben 2021-09-22 16:50:51 +02:00
parent 261d5ca0be
commit dae3b59c58
1 changed files with 3 additions and 0 deletions

View File

@ -110,6 +110,9 @@ module.exports = {
if(type === 'string' || type.name === 'String') {
return `"${value}"`
}
if(value == '[]') {
return "List.of()"
}
return value
}
}