AsyncGenerator icon indicating copy to clipboard operation
AsyncGenerator copied to clipboard

Generate async counterparts in an inherited type

Open maca88 opened this issue 7 years ago • 0 comments

interface IInterface
{
   void SomeMethod();
}

/*
methodConversions:
  - conversion: ToAsync
    containingTypeName: IAsyncInterface
*/
interface IAsyncInterface : IInterface
{
}

The desired behavior is that the async counterparts from the IInterface would be generated in the IAsyncInterface interface. Originally requested here.

maca88 avatar Jun 20 '18 16:06 maca88