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.
There is an inconsistency in java&python drivers. EndPosition.End.Col for java driver returns the position of next character and python driver returns the position of the last character. For example for code print node will have EndPosition.End.Col = 6 for java and EndPosition.End.Col = 5 for python.
Currently, it isn't defined what driver should return, so it depends on native AST.
Position should be defined and later fixed in drivers accordingly.
The text was updated successfully, but these errors were encountered:
There is an inconsistency in java&python drivers.
EndPosition.End.Col
for java driver returns the position of next character and python driver returns the position of the last character. For example for codeprint
node will haveEndPosition.End.Col = 6
for java andEndPosition.End.Col = 5
for python.Currently, it isn't defined what driver should return, so it depends on native AST.
Position should be defined and later fixed in drivers accordingly.
The text was updated successfully, but these errors were encountered: