Code Monkey home page Code Monkey logo

Comments (5)

sksamuel avatar sksamuel commented on July 17, 2024

I am introducing opt in inspections so that's not an issue (that libraries
don't want it as it can be opt in)
On 14 Aug 2014 18:01, "Richard Bradley" [email protected] wrote:

For standalone projects (i.e. not libraries), unused public methods are a
nuisance that can be hard to track down.

Possibly scapegoat could detect these and warn?

The difficulty with this inspection is that it is completely inapplicable
to many projects (i.e. those intended as libraries).


Reply to this email directly or view it on GitHub
https://github.com/sksamuel/scalac-scapegoat-plugin/issues/41.

from scapegoat.

rorygraves avatar rorygraves commented on July 17, 2024

Lol, weird sksamuel and I were talking about deeper code inspections like this one.

I guess this one is easy for public methods. You would want a clear documentation for switching it on/off in the config (possibly in the message itself).

On 14 Aug 2014, at 18:01, Richard Bradley [email protected] wrote:

For standalone projects (i.e. not libraries), unused public methods are a nuisance that can be hard to track down.

Possibly scapegoat could detect these and warn?

The difficulty with this inspection is that it is completely inapplicable to many projects (i.e. those intended as libraries).


Reply to this email directly or view it on GitHub.

from scapegoat.

rorygraves avatar rorygraves commented on July 17, 2024

I think one of the challenges with this inspection is the interesting cases rapidly devolve into graph walking the entire code. E.g. a method overrides a trait. To determine if the method is dead you need to find all instances of calls to the trait (only if somebody ever creates an instance). I think good dead code detection is going to take some interesting deep code analysis. This is something I'm really interested in and am hoping to use the core of the Ensime project to do it.

from scapegoat.

sksamuel avatar sksamuel commented on July 17, 2024

I think it would be reasonably straightforward but a bit of trail of error
to do this:

For every method declaration add it to a list of declared methods
For every method invocation add it to a list of invoked methods

After walking the entire graph, declarations - invocations are unused. This
doesn't account for traits or superclasses which might need a bit more work.

On 14 August 2014 18:30, Rory [email protected] wrote:

I think one of the challenges with this inspection is the interesting
cases rapidly devolve into graph walking the entire code. E.g. a method
overrides a trait. To determine if the method is dead you need to find all
instances of calls to the trait (only if somebody ever creates an
instance). I think good dead code detection is going to take some
interesting deep code analysis. This is something I'm really interested in
and am hoping to use the core of the Ensime project to do it.


Reply to this email directly or view it on GitHub
https://github.com/sksamuel/scalac-scapegoat-plugin/issues/41#issuecomment-52214948
.

from scapegoat.

rorygraves avatar rorygraves commented on July 17, 2024

Its definitely worth a try. I would love to see this working and would be a cool win for scapegoat.

from scapegoat.

Related Issues (20)

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.