impl icon indicating copy to clipboard operation
impl copied to clipboard

impl generates method stubs for implementing an interface.

Results 5 impl issues
Sort by recently updated
recently updated
newest added

I am attempting to generate the stubs for the `Node` interface but I get a `not an interface: blocks.Block`: ```go import ( blocks "github.com/ipfs/go-block-format" ) type Node interface { blocks.Block...

It'd be awesome if `impl` could add the missing methods of an interface to a `struct` when executed twice. What it currently does is just duplicating all the methods. If...

``` ⮀ impl 'msg diffRezMessage' logging.LogMessage unrecognized interface: eachFielder ``` Where `logging.LogMessage` is like: ```go // A LogMessage has structured data to report to a log (c.f. Deliver) LogMessage interface...

Something will almost certainly break.

Similar to gorename, so that people and tool authors can move comfortably from one tool to the next. We currently accept `net/http.ResponseWriter`; we should also accept `"net/http".ResponseWriter`. Moved from the...