Incorrect endLoc of MemberExpr in AST?

My question is described on SO:
https://stackoverflow.com/questions/59697541/expression-size-in-ast-is-incorrect-for-member-access

I got no answer on SO, and I suppose that I can reach more clang devs through this mailing list. I hope it is ok.

Thanks!

Best,
Nikita

My question is described on SO:
clang - Expression size in AST is incorrect for member access - Stack Overflow

I got no answer on SO, and I suppose that I can reach more clang devs through this mailing list. I hope it is ok.

Thanks!

SourceLocations in Clang point to the insertion point before the
token, not to the insertion point after the token. To find the end of
the characters, you have to measure the token length and add it to the
end location. You can use Lexer::getLocForEndOfToken() to do this
automatically for you.

HTH!

~Aaron