c2nes / javalang

Pure Python Java parser and tools
MIT License
737 stars 161 forks source link

Error of token position of lines preceded by inline comments #54

Closed bloriot97 closed 6 years ago

bloriot97 commented 6 years ago

When a line is preceded by an inline comment the position of lines tokens are decreased by one.

    ...
    static JavaVersion get(final String nom) { // position (xx, 5)
    ...
    // comment
    static JavaVersion get(final String nom) { // position (xx, 4)