You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 8, 2020. It is now read-only.
Parsing javadocs the comments are not parsed as in other languages, where docs are retrieved as a roleComment node with a token attribute containing the content of the comment itself
/** * documentation for java class * multiline documentation here */classHelloWorldApp {}
An alternative could be to parse docs in the same way in the other languages
Here is an example in php, where the documentation structure is different compared with java, but consistent with comments in all the languages.
<?phpclassDeposit {
/** * the deposit ownner. * * @var string witout info */private$_owner;
}
Parsing javadocs the comments are not parsed as in other languages, where docs are retrieved as a
roleComment
node with atoken
attribute containing the content of the comment itselfAn alternative could be to parse docs in the same way in the other languages
Here is an example in
php
, where the documentation structure is different compared withjava
, but consistent with comments in all the languages.addendum:
This issue might be related to these similar ones in other languages drivers:
bblfsh/javascript-driver#36 bblfsh/go-driver#28 bblfsh/python-driver#167
The text was updated successfully, but these errors were encountered: