vscode configuration use simple types where possible

This commit is contained in:
2023-03-18 18:54:03 -06:00
parent c1df082448
commit 35e5e32dbc

View File

@@ -258,7 +258,11 @@
("Int" "integer") ("Int" "integer")
("Bool" "boolean") ("Bool" "boolean")
(otherwise (typeName.toLowerCase)))) (otherwise (typeName.toLowerCase))))
(object type types))))) (object
type
(if (= 1 types.length)
(first types)
types))))))
// Example: // Example:
/* /*