jsdoc
This commit is contained in:
parent
3c54f30a89
commit
079ff1ee3e
@ -21,7 +21,14 @@ func (t *TypescriptApiParser) Parse(sourceFilePath string) (Api, error) {
|
|||||||
}, "", core.ScriptKindTS)
|
}, "", core.ScriptKindTS)
|
||||||
_ = sourceFile
|
_ = 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
|
return Api{}, nil
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user