VSL icon indicating copy to clipboard operation
VSL copied to clipboard

Dynamic Dispatch on generics

Open vihanb opened this issue 5 years ago • 0 comments

Currently this should properly detect and allow override:

class A<T> {
    func f(a: T) {}
}

class B<U>: A<U> {
    func f(a: U) {}
}

along with fields.

Possible by adjusting Scope#get to accept TypeContext?

vihanb avatar Jan 07 '19 01:01 vihanb