Details
Description
interface IFoo:
def Method(str as string):
pass
def Method(i as int):
pass
class Foo (IFoo):
def Method(str as string):
pass
test.boo(8,12): BCW0001: WARNING: Type 'Foo' does not provide an implementation for 'IFoo.Method' and will be marked
abstract
Which method didn't I implement? I would like to get the full method signature so I could easily implement it. (I run into it with a class that has 5 overloads, and it took me some time to find the missing one.