Issue
I need to analyse kotlin files code, to detect the keyword "data" and "?".
The issue is I don't find any libs like JavaParser. I don't need powerfull tools, just something who return me the number of the lines.
Any idea?
Solution
I use antlr4 to do it. And I create an open source lib: https://github.com/sarahBuisson/kotlin-parser
<dependency
<groupId>com.github.sarahbuisson</groupId>
<artifactId>kotlin-parser</artifactId>
</dependency>
Answered By - sab
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.