typia 13.0.0-dev.20260520 → 13.0.0-dev.20260520.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -201,13 +201,11 @@ func metadata_js_doc_parameter_name(tag *nativeast.Node) string {
|
|
|
201
201
|
if tag.Kind.String() != "KindJSDocParameterTag" && tag.Kind.String() != "KindJSDocPropertyTag" {
|
|
202
202
|
return ""
|
|
203
203
|
}
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
// other DeclarationName Kind that upstream's switch doesn't.
|
|
210
|
-
return nativeast.NodeText(tag.AsJSDocParameterOrPropertyTag().Name())
|
|
204
|
+
name := tag.AsJSDocParameterOrPropertyTag().Name()
|
|
205
|
+
if name == nil {
|
|
206
|
+
return ""
|
|
207
|
+
}
|
|
208
|
+
return name.Text()
|
|
211
209
|
}
|
|
212
210
|
|
|
213
211
|
func metadata_js_doc_type_expression_text(tag *nativeast.Node) string {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "typia",
|
|
3
|
-
"version": "13.0.0-dev.20260520",
|
|
3
|
+
"version": "13.0.0-dev.20260520.2",
|
|
4
4
|
"description": "Superfast runtime validators with only one line",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"exports": {
|
|
@@ -44,8 +44,8 @@
|
|
|
44
44
|
"commander": "^10.0.0",
|
|
45
45
|
"inquirer": "^8.2.5",
|
|
46
46
|
"randexp": "^0.5.3",
|
|
47
|
-
"@typia/interface": "^13.0.0-dev.20260520",
|
|
48
|
-
"@typia/utils": "^13.0.0-dev.20260520"
|
|
47
|
+
"@typia/interface": "^13.0.0-dev.20260520.2",
|
|
48
|
+
"@typia/utils": "^13.0.0-dev.20260520.2"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@rollup/plugin-commonjs": "^29.0.0",
|