Giter VIP home page Giter VIP logo

Comments (4)

Melevir avatar Melevir commented on July 27, 2024

Thank you for your kind words and for the report.
It really seems like a bug.
Problem is I don't have time to fix it right now, so it would be great if you submit the pull request.

from cognitive_complexity.

pkolbus avatar pkolbus commented on July 27, 2024

Apologies for the delay; I've been pulled to other projects the last few weeks (both personal and professional). Finally got a chance to work on cognitive complexity again this weekend, and found the cause.

First, ast.iter_child_nodes() just yields the members of orelse without indicating the else itself. Second, an elif was incrementing the nesting level because it looked no different than a nested if. This means that a simple if..else is undercounted by 1, and a simple if..elif..else is correct but for the wrong reasons (+2 to the elif when it should be +1 to the elif and +1 to the else).

Since for and while have optional else clauses, I've attempted to account for those as well.

I'll create the PR momentarily.

@Melevir, I also noticed two other cases where complexity seems to be overcounted. Since the fix involves changes in the same areas, I can add these to the PR I'm working on, or write separate issues and PRs if you prefer.

  • I think ast.BoolOp should not receive a nesting increment (test_real_function() should have a cognitive complexity of 9)
  • I think break and continue should not receive any increment (unlike C and Java there is no goto and no break/continue to a label, and no increment is given in the addVersion example in the Cognitive Complexity white paper).

from cognitive_complexity.

Melevir avatar Melevir commented on July 27, 2024

Merged. Thanks a lot!
Please, create sepatate issues for other problems. It seems like we should fix them and make new major release since thouse changes are not backward compatible.

from cognitive_complexity.

pkolbus avatar pkolbus commented on July 27, 2024

Happy to help! Thanks for the quick review and merge. Will create additional issues now.

from cognitive_complexity.

Related Issues (17)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.