This commit is contained in:
Egor Aristov 2025-10-15 17:25:57 +03:00
parent 3c54f30a89
commit 079ff1ee3e
Signed by: egor3f
GPG Key ID: 40482A264AAEC85F

View File

@ -21,7 +21,14 @@ func (t *TypescriptApiParser) Parse(sourceFilePath string) (Api, error) {
}, "", core.ScriptKindTS)
_ = sourceFile
fmt.Println("kek")
sourceFile.ForEachChild(func(node *ast.Node) bool {
if node.IsJSDoc() {
jsDoc := node.AsJSDoc()
_ = jsDoc
fmt.Println("a")
}
return false
})
return Api{}, nil
}