venantius / yagni

A Leiningen plugin for finding dead code
Eclipse Public License 1.0
219 stars 10 forks source link

Implemented protocols are still considered parents #23

Closed NoamB closed 9 years ago

NoamB commented 9 years ago
(defprotocol MyProtocol
   (foo [this]))

(deftype MyCoolType []
  MyProtocol
  (foo [this]
    (my-func)))

MyProtocol is reported as parent.