1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
=== tests/cases/compiler/restParameterAssignmentCompatibility.ts ===
class T {
>T : T
m(...p3) {
>m : (...p3: any[]) => void
>p3 : any[]
}
}
class S {
>S : S
m(p1, p2) {
>m : (p1: any, p2: any) => void
>p1 : any
>p2 : any
}
}
var t: T;
>t : T
var s: S;
>s : S
// M is a non - specialized call or construct signature and S' contains a call or construct signature N where,
// the number of non-optional parameters in N is less than or equal to the total number of parameters in M,
t = s; // Should be valid (rest params correspond to an infinite expansion of parameters)
>t = s : S
>t : T
>s : S
class T1 {
>T1 : T1
m(p1?, p2?) {
>m : (p1?: any, p2?: any) => void
>p1 : any
>p2 : any
}
}
var t1: T1;
>t1 : T1
// When comparing call or construct signatures, parameter names are ignored and rest parameters correspond to an unbounded expansion of optional parameters of the rest parameter element type.
t1 = s; // Similar to above, but optionality does not matter here.
>t1 = s : S
>t1 : T1
>s : S
|