User Details
User Details
- User Since
- Feb 6 2022, 4:59 AM (59 w, 5 d)
Feb 23 2022
Feb 23 2022
iannisdezwart added a comment to D119077: clangd SemanticHighlighting: added support for highlighting overloaded operators.
Thank you for the comment, it's very helpful.
Feb 17 2022
Feb 17 2022
iannisdezwart requested review of D119077: clangd SemanticHighlighting: added support for highlighting overloaded operators.
Would be nice if this can further be reviewed and commited to the repo!
Feb 7 2022
Feb 7 2022
iannisdezwart updated the diff for D119077: clangd SemanticHighlighting: added support for highlighting overloaded operators.
Fixed formatting & reverted a deleted FIXME comment.
iannisdezwart accepted D119077: clangd SemanticHighlighting: added support for highlighting overloaded operators.
iannisdezwart updated the diff for D119077: clangd SemanticHighlighting: added support for highlighting overloaded operators.
Two changes:
- Added tests for overloaded operators into SemanticHighlightingTests.
- Fixed the way tokens are expanded. Previously operator<< would be split into two highlighting tokens: operator and <<. Now it's all one highlighting token. The same is true for all other compound operator keyword statements.
Feb 6 2022
Feb 6 2022
iannisdezwart updated the diff for D119077: clangd SemanticHighlighting: added support for highlighting overloaded operators.
Fixed a bug I introduced by removing a null-check. I added the null-check back in again.