interfaces
interfaces copied to clipboard
Code generation tools for Go.
Add support for checking if the params or result types are instantiated with types and if so, build up the name appropriately.
If you have a function like: `func (a* MyStruct) Fun1(arg Generic[string])` The resultant interface method will be: `func Fun1(arg Generic)` It seems like the type args used to instantiate the...
Migrate from using the older `loader` package in golang tools to the new `packages` package in golang tools. The previous `loader` package does not support modules and after switching from...
I'm trying to generate an interface for a struct in an external library, but they define additional methods in test file, and I don't want the generated interface to have...