kisstkondoros / codemetrics

VSCode extension which shows the complexity information for TypeScript class members
Other
402 stars 20 forks source link

Feature Request: Support more languages (specifically C++) #99

Closed baxelrod-bdai closed 1 year ago

baxelrod-bdai commented 2 years ago

This looks like a super helpful extension. I wish it supported my primary language: C++.

I see that this other complexity extension (https://marketplace.visualstudio.com/items?itemName=selcuk-usta.code-complexity-report-generator) supports many languages. Maybe see what they use behind the scenes?

kisstkondoros commented 1 year ago

It seems to be using a rest API which in turn uses https://github.com/terryyin/lizard (python) to parse the AST.

AFAIK there is no good alternative in node for this.