Add spec description into tests

This commit is contained in:
Yui T
2015-04-16 15:39:12 -07:00
parent 5ac12cfbc0
commit 6d9c1f4c4a
6 changed files with 347 additions and 270 deletions

View File

@@ -1,29 +1,53 @@
//// [functionExpressionContextualTyping1.ts]
// When a function expression with no type parameters and no parameter type annotations
// is contextually typed (section 4.19) by a type T and a contextual signature S can be extracted from T
enum E { red, blue }
var g0: (n: number, s:string) => number;
var g: ((s: string, w: boolean) => void) | ((n: number) => number);
var g1: ((s: string, w: boolean) => void) | ((s: string, w: number) => string);
// A contextual signature S is extracted from a function type T as follows:
// If T is a function type with exactly one call signature, and if that call signature is non- generic, S is that signature.
g1 = (j, m) => { } // Per spec, no contextual signature can be extracted in this case.
g = (k, h=true) => { k.toLowerCase() };
g = (k) => { k.toLowerCase() };
g = (i) => {
var a0: (n: number, s: string) => number = (num, str) => {
num.toExponential();
return 0;
}
class Class<T> {
foo() { }
}
var a1: (c: Class<Number>) => number = (a1) => {
a1.foo();
return 1;
}
// A contextual signature S is extracted from a function type T as follows:
// If T is a union type, let U be the set of element types in T that have call signatures.
// If each type in U has exactly one call signature and that call signature is non- generic,
// and if all of the signatures are identical ignoring return types,
// then S is a signature with the same parameters and a union of the return types.
var b1: ((s: string, w: boolean) => void) | ((s: string, w: boolean) => string);
b1 = (k, h) => { };
var b2: typeof a0 | ((n: number, s: string) => string);
b2 = (foo, bar) => { return foo + 1; }
b2 = (foo, bar) => { return "hello"; }
var b3: (name: string, num: number, boo: boolean) => void;
b3 = (name, number) => { };
var b4: (n: E) => string = (number = 1) => { return "hello"; };
var b5: (n: {}) => string = (number = "string") => { return "hello"; };
// A contextual signature S is extracted from a function type T as follows:
// Otherwise, no contextual signature can be extracted from T and S is undefined.
var b6: ((s: string, w: boolean) => void) | ((n: number) => number);
var b7: ((s: string, w: boolean) => void) | ((s: string, w: number) => string);
b6 = (k) => { k.toLowerCase() };
b6 = (i) => {
i.toExponential();
return i;
}; // Per spec, no contextual signature can be extracted in this case.
}; // Per spec, no contextual signature can be extracted in this case. (Otherwise clause)
b7 = (j, m) => { }; // Per spec, no contextual signature can be extracted in this case. (Otherwise clause)
var h: ((s: string, w: boolean) => void) | ((s: string, w: boolean) => string);
h = (k, h) => { };
var i: typeof g0 | ((n: number, s: string) => string);
i = (foo, bar) => { return foo + 1; }
i = (foo, bar) => { return "hello"; }
var j: (name: string, num: number, boo: boolean) => void;
j = (name, number) => { };
var k: (n: E) => string = (number = 1) => { return "hello"; };
var k1: (n: {}) => string = (number = 1) => { return "hello"; };
class C<T, U> {
constructor() {
var k: ((j: T, k: U) => (T|U)[]) | ((j: number,k :U) => number[]) = (j, k) => {
@@ -33,39 +57,59 @@ class C<T, U> {
}
//// [functionExpressionContextualTyping1.js]
// When a function expression with no type parameters and no parameter type annotations
// is contextually typed (section 4.19) by a type T and a contextual signature S can be extracted from T
var E;
(function (E) {
E[E["red"] = 0] = "red";
E[E["blue"] = 1] = "blue";
})(E || (E = {}));
var g0;
var g;
var g1;
g1 = function (j, m) { }; // Per spec, no contextual signature can be extracted in this case.
g = function (k, h) {
if (h === void 0) { h = true; }
k.toLowerCase();
// A contextual signature S is extracted from a function type T as follows:
// If T is a function type with exactly one call signature, and if that call signature is non- generic, S is that signature.
var a0 = function (num, str) {
num.toExponential();
return 0;
};
g = function (k) { k.toLowerCase(); };
g = function (i) {
var Class = (function () {
function Class() {
}
Class.prototype.foo = function () { };
return Class;
})();
var a1 = function (a1) {
a1.foo();
return 1;
};
// A contextual signature S is extracted from a function type T as follows:
// If T is a union type, let U be the set of element types in T that have call signatures.
// If each type in U has exactly one call signature and that call signature is non- generic,
// and if all of the signatures are identical ignoring return types,
// then S is a signature with the same parameters and a union of the return types.
var b1;
b1 = function (k, h) { };
var b2;
b2 = function (foo, bar) { return foo + 1; };
b2 = function (foo, bar) { return "hello"; };
var b3;
b3 = function (name, number) { };
var b4 = function (number) {
if (number === void 0) { number = 1; }
return "hello";
};
var b5 = function (number) {
if (number === void 0) { number = "string"; }
return "hello";
};
// A contextual signature S is extracted from a function type T as follows:
// Otherwise, no contextual signature can be extracted from T and S is undefined.
var b6;
var b7;
b6 = function (k) { k.toLowerCase(); };
b6 = function (i) {
i.toExponential();
return i;
}; // Per spec, no contextual signature can be extracted in this case.
var h;
h = function (k, h) { };
var i;
i = function (foo, bar) { return foo + 1; };
i = function (foo, bar) { return "hello"; };
var j;
j = function (name, number) { };
var k = function (number) {
if (number === void 0) { number = 1; }
return "hello";
};
var k1 = function (number) {
if (number === void 0) { number = 1; }
return "hello";
};
}; // Per spec, no contextual signature can be extracted in this case. (Otherwise clause)
b7 = function (j, m) { }; // Per spec, no contextual signature can be extracted in this case. (Otherwise clause)
var C = (function () {
function C() {
var k = function (j, k) {

View File

@@ -1,166 +1,205 @@
=== tests/cases/conformance/expressions/contextualTyping/functionExpressionContextualTyping1.ts ===
// When a function expression with no type parameters and no parameter type annotations
// is contextually typed (section 4.19) by a type T and a contextual signature S can be extracted from T
enum E { red, blue }
>E : E, Symbol(E, Decl(functionExpressionContextualTyping1.ts, 0, 0))
>red : E, Symbol(E.red, Decl(functionExpressionContextualTyping1.ts, 0, 8))
>blue : E, Symbol(E.blue, Decl(functionExpressionContextualTyping1.ts, 0, 13))
>red : E, Symbol(E.red, Decl(functionExpressionContextualTyping1.ts, 3, 8))
>blue : E, Symbol(E.blue, Decl(functionExpressionContextualTyping1.ts, 3, 13))
var g0: (n: number, s:string) => number;
>g0 : (n: number, s: string) => number, Symbol(g0, Decl(functionExpressionContextualTyping1.ts, 2, 3))
>n : number, Symbol(n, Decl(functionExpressionContextualTyping1.ts, 2, 9))
>s : string, Symbol(s, Decl(functionExpressionContextualTyping1.ts, 2, 19))
// A contextual signature S is extracted from a function type T as follows:
// If T is a function type with exactly one call signature, and if that call signature is non- generic, S is that signature.
var g: ((s: string, w: boolean) => void) | ((n: number) => number);
>g : ((s: string, w: boolean) => void) | ((n: number) => number), Symbol(g, Decl(functionExpressionContextualTyping1.ts, 3, 3))
>s : string, Symbol(s, Decl(functionExpressionContextualTyping1.ts, 3, 9))
>w : boolean, Symbol(w, Decl(functionExpressionContextualTyping1.ts, 3, 19))
>n : number, Symbol(n, Decl(functionExpressionContextualTyping1.ts, 3, 45))
var a0: (n: number, s: string) => number = (num, str) => {
>a0 : (n: number, s: string) => number, Symbol(a0, Decl(functionExpressionContextualTyping1.ts, 8, 3))
>n : number, Symbol(n, Decl(functionExpressionContextualTyping1.ts, 8, 9))
>s : string, Symbol(s, Decl(functionExpressionContextualTyping1.ts, 8, 19))
>(num, str) => { num.toExponential(); return 0;} : (num: number, str: string) => number
>num : number, Symbol(num, Decl(functionExpressionContextualTyping1.ts, 8, 44))
>str : string, Symbol(str, Decl(functionExpressionContextualTyping1.ts, 8, 48))
var g1: ((s: string, w: boolean) => void) | ((s: string, w: number) => string);
>g1 : ((s: string, w: boolean) => void) | ((s: string, w: number) => string), Symbol(g1, Decl(functionExpressionContextualTyping1.ts, 4, 3))
>s : string, Symbol(s, Decl(functionExpressionContextualTyping1.ts, 4, 10))
>w : boolean, Symbol(w, Decl(functionExpressionContextualTyping1.ts, 4, 20))
>s : string, Symbol(s, Decl(functionExpressionContextualTyping1.ts, 4, 46))
>w : number, Symbol(w, Decl(functionExpressionContextualTyping1.ts, 4, 56))
num.toExponential();
>num.toExponential() : string
>num.toExponential : (fractionDigits?: number) => string, Symbol(Number.toExponential, Decl(lib.d.ts, 469, 45))
>num : number, Symbol(num, Decl(functionExpressionContextualTyping1.ts, 8, 44))
>toExponential : (fractionDigits?: number) => string, Symbol(Number.toExponential, Decl(lib.d.ts, 469, 45))
g1 = (j, m) => { } // Per spec, no contextual signature can be extracted in this case.
>g1 = (j, m) => { } : (j: any, m: any) => void
>g1 : ((s: string, w: boolean) => void) | ((s: string, w: number) => string), Symbol(g1, Decl(functionExpressionContextualTyping1.ts, 4, 3))
>(j, m) => { } : (j: any, m: any) => void
>j : any, Symbol(j, Decl(functionExpressionContextualTyping1.ts, 6, 6))
>m : any, Symbol(m, Decl(functionExpressionContextualTyping1.ts, 6, 8))
return 0;
>0 : number
}
g = (k, h=true) => { k.toLowerCase() };
>g = (k, h=true) => { k.toLowerCase() } : (k: any, h?: boolean) => void
>g : ((s: string, w: boolean) => void) | ((n: number) => number), Symbol(g, Decl(functionExpressionContextualTyping1.ts, 3, 3))
>(k, h=true) => { k.toLowerCase() } : (k: any, h?: boolean) => void
>k : any, Symbol(k, Decl(functionExpressionContextualTyping1.ts, 7, 5))
>h : boolean, Symbol(h, Decl(functionExpressionContextualTyping1.ts, 7, 7))
>true : boolean
>k.toLowerCase() : any
>k.toLowerCase : any
>k : any, Symbol(k, Decl(functionExpressionContextualTyping1.ts, 7, 5))
>toLowerCase : any
class Class<T> {
>Class : Class<T>, Symbol(Class, Decl(functionExpressionContextualTyping1.ts, 11, 1))
>T : T, Symbol(T, Decl(functionExpressionContextualTyping1.ts, 13, 12))
g = (k) => { k.toLowerCase() };
>g = (k) => { k.toLowerCase() } : (k: any) => void
>g : ((s: string, w: boolean) => void) | ((n: number) => number), Symbol(g, Decl(functionExpressionContextualTyping1.ts, 3, 3))
foo() { }
>foo : () => void, Symbol(foo, Decl(functionExpressionContextualTyping1.ts, 13, 16))
}
var a1: (c: Class<Number>) => number = (a1) => {
>a1 : (c: Class<Number>) => number, Symbol(a1, Decl(functionExpressionContextualTyping1.ts, 17, 3))
>c : Class<Number>, Symbol(c, Decl(functionExpressionContextualTyping1.ts, 17, 9))
>Class : Class<T>, Symbol(Class, Decl(functionExpressionContextualTyping1.ts, 11, 1))
>Number : Number, Symbol(Number, Decl(lib.d.ts, 456, 40), Decl(lib.d.ts, 518, 11))
>(a1) => { a1.foo(); return 1;} : (a1: Class<Number>) => number
>a1 : Class<Number>, Symbol(a1, Decl(functionExpressionContextualTyping1.ts, 17, 40))
a1.foo();
>a1.foo() : void
>a1.foo : () => void, Symbol(Class.foo, Decl(functionExpressionContextualTyping1.ts, 13, 16))
>a1 : Class<Number>, Symbol(a1, Decl(functionExpressionContextualTyping1.ts, 17, 40))
>foo : () => void, Symbol(Class.foo, Decl(functionExpressionContextualTyping1.ts, 13, 16))
return 1;
>1 : number
}
// A contextual signature S is extracted from a function type T as follows:
// If T is a union type, let U be the set of element types in T that have call signatures.
// If each type in U has exactly one call signature and that call signature is non- generic,
// and if all of the signatures are identical ignoring return types,
// then S is a signature with the same parameters and a union of the return types.
var b1: ((s: string, w: boolean) => void) | ((s: string, w: boolean) => string);
>b1 : ((s: string, w: boolean) => void) | ((s: string, w: boolean) => string), Symbol(b1, Decl(functionExpressionContextualTyping1.ts, 27, 3))
>s : string, Symbol(s, Decl(functionExpressionContextualTyping1.ts, 27, 10))
>w : boolean, Symbol(w, Decl(functionExpressionContextualTyping1.ts, 27, 20))
>s : string, Symbol(s, Decl(functionExpressionContextualTyping1.ts, 27, 46))
>w : boolean, Symbol(w, Decl(functionExpressionContextualTyping1.ts, 27, 56))
b1 = (k, h) => { };
>b1 = (k, h) => { } : (k: string, h: boolean) => void
>b1 : ((s: string, w: boolean) => void) | ((s: string, w: boolean) => string), Symbol(b1, Decl(functionExpressionContextualTyping1.ts, 27, 3))
>(k, h) => { } : (k: string, h: boolean) => void
>k : string, Symbol(k, Decl(functionExpressionContextualTyping1.ts, 28, 6))
>h : boolean, Symbol(h, Decl(functionExpressionContextualTyping1.ts, 28, 8))
var b2: typeof a0 | ((n: number, s: string) => string);
>b2 : ((n: number, s: string) => number) | ((n: number, s: string) => string), Symbol(b2, Decl(functionExpressionContextualTyping1.ts, 29, 3))
>a0 : (n: number, s: string) => number, Symbol(a0, Decl(functionExpressionContextualTyping1.ts, 8, 3))
>n : number, Symbol(n, Decl(functionExpressionContextualTyping1.ts, 29, 22))
>s : string, Symbol(s, Decl(functionExpressionContextualTyping1.ts, 29, 32))
b2 = (foo, bar) => { return foo + 1; }
>b2 = (foo, bar) => { return foo + 1; } : (foo: number, bar: string) => number
>b2 : ((n: number, s: string) => number) | ((n: number, s: string) => string), Symbol(b2, Decl(functionExpressionContextualTyping1.ts, 29, 3))
>(foo, bar) => { return foo + 1; } : (foo: number, bar: string) => number
>foo : number, Symbol(foo, Decl(functionExpressionContextualTyping1.ts, 30, 6))
>bar : string, Symbol(bar, Decl(functionExpressionContextualTyping1.ts, 30, 10))
>foo + 1 : number
>foo : number, Symbol(foo, Decl(functionExpressionContextualTyping1.ts, 30, 6))
>1 : number
b2 = (foo, bar) => { return "hello"; }
>b2 = (foo, bar) => { return "hello"; } : (foo: number, bar: string) => string
>b2 : ((n: number, s: string) => number) | ((n: number, s: string) => string), Symbol(b2, Decl(functionExpressionContextualTyping1.ts, 29, 3))
>(foo, bar) => { return "hello"; } : (foo: number, bar: string) => string
>foo : number, Symbol(foo, Decl(functionExpressionContextualTyping1.ts, 31, 6))
>bar : string, Symbol(bar, Decl(functionExpressionContextualTyping1.ts, 31, 10))
>"hello" : string
var b3: (name: string, num: number, boo: boolean) => void;
>b3 : (name: string, num: number, boo: boolean) => void, Symbol(b3, Decl(functionExpressionContextualTyping1.ts, 32, 3))
>name : string, Symbol(name, Decl(functionExpressionContextualTyping1.ts, 32, 9))
>num : number, Symbol(num, Decl(functionExpressionContextualTyping1.ts, 32, 22))
>boo : boolean, Symbol(boo, Decl(functionExpressionContextualTyping1.ts, 32, 35))
b3 = (name, number) => { };
>b3 = (name, number) => { } : (name: string, number: number) => void
>b3 : (name: string, num: number, boo: boolean) => void, Symbol(b3, Decl(functionExpressionContextualTyping1.ts, 32, 3))
>(name, number) => { } : (name: string, number: number) => void
>name : string, Symbol(name, Decl(functionExpressionContextualTyping1.ts, 33, 6))
>number : number, Symbol(number, Decl(functionExpressionContextualTyping1.ts, 33, 11))
var b4: (n: E) => string = (number = 1) => { return "hello"; };
>b4 : (n: E) => string, Symbol(b4, Decl(functionExpressionContextualTyping1.ts, 35, 3))
>n : E, Symbol(n, Decl(functionExpressionContextualTyping1.ts, 35, 9))
>E : E, Symbol(E, Decl(functionExpressionContextualTyping1.ts, 0, 0))
>(number = 1) => { return "hello"; } : (number?: E) => string
>number : E, Symbol(number, Decl(functionExpressionContextualTyping1.ts, 35, 28))
>1 : number
>"hello" : string
var b5: (n: {}) => string = (number = "string") => { return "hello"; };
>b5 : (n: {}) => string, Symbol(b5, Decl(functionExpressionContextualTyping1.ts, 36, 3))
>n : {}, Symbol(n, Decl(functionExpressionContextualTyping1.ts, 36, 9))
>(number = "string") => { return "hello"; } : (number?: {}) => string
>number : {}, Symbol(number, Decl(functionExpressionContextualTyping1.ts, 36, 29))
>"string" : string
>"hello" : string
// A contextual signature S is extracted from a function type T as follows:
// Otherwise, no contextual signature can be extracted from T and S is undefined.
var b6: ((s: string, w: boolean) => void) | ((n: number) => number);
>b6 : ((s: string, w: boolean) => void) | ((n: number) => number), Symbol(b6, Decl(functionExpressionContextualTyping1.ts, 40, 3))
>s : string, Symbol(s, Decl(functionExpressionContextualTyping1.ts, 40, 10))
>w : boolean, Symbol(w, Decl(functionExpressionContextualTyping1.ts, 40, 20))
>n : number, Symbol(n, Decl(functionExpressionContextualTyping1.ts, 40, 46))
var b7: ((s: string, w: boolean) => void) | ((s: string, w: number) => string);
>b7 : ((s: string, w: boolean) => void) | ((s: string, w: number) => string), Symbol(b7, Decl(functionExpressionContextualTyping1.ts, 41, 3))
>s : string, Symbol(s, Decl(functionExpressionContextualTyping1.ts, 41, 10))
>w : boolean, Symbol(w, Decl(functionExpressionContextualTyping1.ts, 41, 20))
>s : string, Symbol(s, Decl(functionExpressionContextualTyping1.ts, 41, 46))
>w : number, Symbol(w, Decl(functionExpressionContextualTyping1.ts, 41, 56))
b6 = (k) => { k.toLowerCase() };
>b6 = (k) => { k.toLowerCase() } : (k: any) => void
>b6 : ((s: string, w: boolean) => void) | ((n: number) => number), Symbol(b6, Decl(functionExpressionContextualTyping1.ts, 40, 3))
>(k) => { k.toLowerCase() } : (k: any) => void
>k : any, Symbol(k, Decl(functionExpressionContextualTyping1.ts, 8, 5))
>k : any, Symbol(k, Decl(functionExpressionContextualTyping1.ts, 42, 6))
>k.toLowerCase() : any
>k.toLowerCase : any
>k : any, Symbol(k, Decl(functionExpressionContextualTyping1.ts, 8, 5))
>k : any, Symbol(k, Decl(functionExpressionContextualTyping1.ts, 42, 6))
>toLowerCase : any
g = (i) => {
>g = (i) => { i.toExponential(); return i;} : (i: any) => any
>g : ((s: string, w: boolean) => void) | ((n: number) => number), Symbol(g, Decl(functionExpressionContextualTyping1.ts, 3, 3))
b6 = (i) => {
>b6 = (i) => { i.toExponential(); return i;} : (i: any) => any
>b6 : ((s: string, w: boolean) => void) | ((n: number) => number), Symbol(b6, Decl(functionExpressionContextualTyping1.ts, 40, 3))
>(i) => { i.toExponential(); return i;} : (i: any) => any
>i : any, Symbol(i, Decl(functionExpressionContextualTyping1.ts, 9, 5))
>i : any, Symbol(i, Decl(functionExpressionContextualTyping1.ts, 43, 6))
i.toExponential();
>i.toExponential() : any
>i.toExponential : any
>i : any, Symbol(i, Decl(functionExpressionContextualTyping1.ts, 9, 5))
>i : any, Symbol(i, Decl(functionExpressionContextualTyping1.ts, 43, 6))
>toExponential : any
return i;
>i : any, Symbol(i, Decl(functionExpressionContextualTyping1.ts, 9, 5))
>i : any, Symbol(i, Decl(functionExpressionContextualTyping1.ts, 43, 6))
}; // Per spec, no contextual signature can be extracted in this case.
var h: ((s: string, w: boolean) => void) | ((s: string, w: boolean) => string);
>h : ((s: string, w: boolean) => void) | ((s: string, w: boolean) => string), Symbol(h, Decl(functionExpressionContextualTyping1.ts, 14, 3))
>s : string, Symbol(s, Decl(functionExpressionContextualTyping1.ts, 14, 9))
>w : boolean, Symbol(w, Decl(functionExpressionContextualTyping1.ts, 14, 19))
>s : string, Symbol(s, Decl(functionExpressionContextualTyping1.ts, 14, 45))
>w : boolean, Symbol(w, Decl(functionExpressionContextualTyping1.ts, 14, 55))
h = (k, h) => { };
>h = (k, h) => { } : (k: string, h: boolean) => void
>h : ((s: string, w: boolean) => void) | ((s: string, w: boolean) => string), Symbol(h, Decl(functionExpressionContextualTyping1.ts, 14, 3))
>(k, h) => { } : (k: string, h: boolean) => void
>k : string, Symbol(k, Decl(functionExpressionContextualTyping1.ts, 15, 5))
>h : boolean, Symbol(h, Decl(functionExpressionContextualTyping1.ts, 15, 7))
var i: typeof g0 | ((n: number, s: string) => string);
>i : ((n: number, s: string) => number) | ((n: number, s: string) => string), Symbol(i, Decl(functionExpressionContextualTyping1.ts, 17, 3))
>g0 : (n: number, s: string) => number, Symbol(g0, Decl(functionExpressionContextualTyping1.ts, 2, 3))
>n : number, Symbol(n, Decl(functionExpressionContextualTyping1.ts, 17, 21))
>s : string, Symbol(s, Decl(functionExpressionContextualTyping1.ts, 17, 31))
i = (foo, bar) => { return foo + 1; }
>i = (foo, bar) => { return foo + 1; } : (foo: number, bar: string) => number
>i : ((n: number, s: string) => number) | ((n: number, s: string) => string), Symbol(i, Decl(functionExpressionContextualTyping1.ts, 17, 3))
>(foo, bar) => { return foo + 1; } : (foo: number, bar: string) => number
>foo : number, Symbol(foo, Decl(functionExpressionContextualTyping1.ts, 18, 5))
>bar : string, Symbol(bar, Decl(functionExpressionContextualTyping1.ts, 18, 9))
>foo + 1 : number
>foo : number, Symbol(foo, Decl(functionExpressionContextualTyping1.ts, 18, 5))
>1 : number
i = (foo, bar) => { return "hello"; }
>i = (foo, bar) => { return "hello"; } : (foo: number, bar: string) => string
>i : ((n: number, s: string) => number) | ((n: number, s: string) => string), Symbol(i, Decl(functionExpressionContextualTyping1.ts, 17, 3))
>(foo, bar) => { return "hello"; } : (foo: number, bar: string) => string
>foo : number, Symbol(foo, Decl(functionExpressionContextualTyping1.ts, 19, 5))
>bar : string, Symbol(bar, Decl(functionExpressionContextualTyping1.ts, 19, 9))
>"hello" : string
var j: (name: string, num: number, boo: boolean) => void;
>j : (name: string, num: number, boo: boolean) => void, Symbol(j, Decl(functionExpressionContextualTyping1.ts, 20, 3))
>name : string, Symbol(name, Decl(functionExpressionContextualTyping1.ts, 20, 8))
>num : number, Symbol(num, Decl(functionExpressionContextualTyping1.ts, 20, 21))
>boo : boolean, Symbol(boo, Decl(functionExpressionContextualTyping1.ts, 20, 34))
j = (name, number) => { };
>j = (name, number) => { } : (name: string, number: number) => void
>j : (name: string, num: number, boo: boolean) => void, Symbol(j, Decl(functionExpressionContextualTyping1.ts, 20, 3))
>(name, number) => { } : (name: string, number: number) => void
>name : string, Symbol(name, Decl(functionExpressionContextualTyping1.ts, 21, 5))
>number : number, Symbol(number, Decl(functionExpressionContextualTyping1.ts, 21, 10))
var k: (n: E) => string = (number = 1) => { return "hello"; };
>k : (n: E) => string, Symbol(k, Decl(functionExpressionContextualTyping1.ts, 23, 3))
>n : E, Symbol(n, Decl(functionExpressionContextualTyping1.ts, 23, 8))
>E : E, Symbol(E, Decl(functionExpressionContextualTyping1.ts, 0, 0))
>(number = 1) => { return "hello"; } : (number?: E) => string
>number : E, Symbol(number, Decl(functionExpressionContextualTyping1.ts, 23, 27))
>1 : number
>"hello" : string
var k1: (n: {}) => string = (number = 1) => { return "hello"; };
>k1 : (n: {}) => string, Symbol(k1, Decl(functionExpressionContextualTyping1.ts, 24, 3))
>n : {}, Symbol(n, Decl(functionExpressionContextualTyping1.ts, 24, 9))
>(number = 1) => { return "hello"; } : (number?: {}) => string
>number : {}, Symbol(number, Decl(functionExpressionContextualTyping1.ts, 24, 29))
>1 : number
>"hello" : string
}; // Per spec, no contextual signature can be extracted in this case. (Otherwise clause)
b7 = (j, m) => { }; // Per spec, no contextual signature can be extracted in this case. (Otherwise clause)
>b7 = (j, m) => { } : (j: any, m: any) => void
>b7 : ((s: string, w: boolean) => void) | ((s: string, w: number) => string), Symbol(b7, Decl(functionExpressionContextualTyping1.ts, 41, 3))
>(j, m) => { } : (j: any, m: any) => void
>j : any, Symbol(j, Decl(functionExpressionContextualTyping1.ts, 47, 6))
>m : any, Symbol(m, Decl(functionExpressionContextualTyping1.ts, 47, 8))
class C<T, U> {
>C : C<T, U>, Symbol(C, Decl(functionExpressionContextualTyping1.ts, 24, 64))
>T : T, Symbol(T, Decl(functionExpressionContextualTyping1.ts, 25, 8))
>U : U, Symbol(U, Decl(functionExpressionContextualTyping1.ts, 25, 10))
>C : C<T, U>, Symbol(C, Decl(functionExpressionContextualTyping1.ts, 47, 19))
>T : T, Symbol(T, Decl(functionExpressionContextualTyping1.ts, 49, 8))
>U : U, Symbol(U, Decl(functionExpressionContextualTyping1.ts, 49, 10))
constructor() {
var k: ((j: T, k: U) => (T|U)[]) | ((j: number,k :U) => number[]) = (j, k) => {
>k : ((j: T, k: U) => (T | U)[]) | ((j: number, k: U) => number[]), Symbol(k, Decl(functionExpressionContextualTyping1.ts, 27, 11))
>j : T, Symbol(j, Decl(functionExpressionContextualTyping1.ts, 27, 17))
>T : T, Symbol(T, Decl(functionExpressionContextualTyping1.ts, 25, 8))
>k : U, Symbol(k, Decl(functionExpressionContextualTyping1.ts, 27, 22))
>U : U, Symbol(U, Decl(functionExpressionContextualTyping1.ts, 25, 10))
>T : T, Symbol(T, Decl(functionExpressionContextualTyping1.ts, 25, 8))
>U : U, Symbol(U, Decl(functionExpressionContextualTyping1.ts, 25, 10))
>j : number, Symbol(j, Decl(functionExpressionContextualTyping1.ts, 27, 45))
>k : U, Symbol(k, Decl(functionExpressionContextualTyping1.ts, 27, 55))
>U : U, Symbol(U, Decl(functionExpressionContextualTyping1.ts, 25, 10))
>k : ((j: T, k: U) => (T | U)[]) | ((j: number, k: U) => number[]), Symbol(k, Decl(functionExpressionContextualTyping1.ts, 51, 11))
>j : T, Symbol(j, Decl(functionExpressionContextualTyping1.ts, 51, 17))
>T : T, Symbol(T, Decl(functionExpressionContextualTyping1.ts, 49, 8))
>k : U, Symbol(k, Decl(functionExpressionContextualTyping1.ts, 51, 22))
>U : U, Symbol(U, Decl(functionExpressionContextualTyping1.ts, 49, 10))
>T : T, Symbol(T, Decl(functionExpressionContextualTyping1.ts, 49, 8))
>U : U, Symbol(U, Decl(functionExpressionContextualTyping1.ts, 49, 10))
>j : number, Symbol(j, Decl(functionExpressionContextualTyping1.ts, 51, 45))
>k : U, Symbol(k, Decl(functionExpressionContextualTyping1.ts, 51, 55))
>U : U, Symbol(U, Decl(functionExpressionContextualTyping1.ts, 49, 10))
>(j, k) => { return [j, k]; } : (j: any, k: any) => any[]
>j : any, Symbol(j, Decl(functionExpressionContextualTyping1.ts, 27, 77))
>k : any, Symbol(k, Decl(functionExpressionContextualTyping1.ts, 27, 79))
>j : any, Symbol(j, Decl(functionExpressionContextualTyping1.ts, 51, 77))
>k : any, Symbol(k, Decl(functionExpressionContextualTyping1.ts, 51, 79))
return [j, k];
>[j, k] : any[]
>j : any, Symbol(j, Decl(functionExpressionContextualTyping1.ts, 27, 77))
>k : any, Symbol(k, Decl(functionExpressionContextualTyping1.ts, 27, 79))
>j : any, Symbol(j, Decl(functionExpressionContextualTyping1.ts, 51, 77))
>k : any, Symbol(k, Decl(functionExpressionContextualTyping1.ts, 51, 79))
} // Per spec, no contextual signature can be extracted in this case.
}

View File

@@ -1,36 +1,21 @@
tests/cases/conformance/expressions/contextualTyping/functionExpressionContextualTyping2.ts(3,1): error TS2322: Type '(foo: number, bar: string) => boolean' is not assignable to type '((n: number, s: string) => number) | ((n: number, s: string) => string)'.
tests/cases/conformance/expressions/contextualTyping/functionExpressionContextualTyping2.ts(11,1): error TS2322: Type '(foo: number, bar: string) => boolean' is not assignable to type '((n: number, s: string) => number) | ((n: number, s: string) => string)'.
Type '(foo: number, bar: string) => boolean' is not assignable to type '(n: number, s: string) => string'.
Type 'boolean' is not assignable to type 'string'.
tests/cases/conformance/expressions/contextualTyping/functionExpressionContextualTyping2.ts(5,7): error TS2300: Duplicate identifier 'C'.
tests/cases/conformance/expressions/contextualTyping/functionExpressionContextualTyping2.ts(8,7): error TS2300: Duplicate identifier 'C'.
tests/cases/conformance/expressions/contextualTyping/functionExpressionContextualTyping2.ts(10,43): error TS2322: Type 'number' is not assignable to type 'T'.
tests/cases/conformance/expressions/contextualTyping/functionExpressionContextualTyping2.ts(10,50): error TS2322: Type 'number' is not assignable to type 'U'.
==== tests/cases/conformance/expressions/contextualTyping/functionExpressionContextualTyping2.ts (5 errors) ====
var g0: (n: number, s: string) => number
var i: typeof g0 | ((n: number, s: string) => string);
i = (foo, bar) => { return true; }
~
==== tests/cases/conformance/expressions/contextualTyping/functionExpressionContextualTyping2.ts (1 errors) ====
// A contextual signature S is extracted from a function type T as follows:
// If T is a function type with exactly one call signature, and if that call signature is non- generic, S is that signature.
// If T is a union type, let U be the set of element types in T that have call signatures.
// If each type in U has exactly one call signature and that call signature is non- generic,
// and if all of the signatures are identical ignoring return types, then S is a signature
// with the same parameters and a union of the return types.
// Otherwise, no contextual signature can be extracted from T and S is undefined.
var a0: (n: number, s: string) => number
var a1: typeof a0 | ((n: number, s: string) => string);
a1 = (foo, bar) => { return true; } // Error
~~
!!! error TS2322: Type '(foo: number, bar: string) => boolean' is not assignable to type '((n: number, s: string) => number) | ((n: number, s: string) => string)'.
!!! error TS2322: Type '(foo: number, bar: string) => boolean' is not assignable to type '(n: number, s: string) => string'.
!!! error TS2322: Type 'boolean' is not assignable to type 'string'.
class C<T> { }
~
!!! error TS2300: Duplicate identifier 'C'.
var j: (c: C<Number>) => number = (j) => { return 1; }
class C<T, U> {
~
!!! error TS2300: Duplicate identifier 'C'.
constructor() {
var k: (j: T, k: U) => (T|U)[] = (j = 1, k = 0) => {
~~~~~
!!! error TS2322: Type 'number' is not assignable to type 'T'.
~~~~~
!!! error TS2322: Type 'number' is not assignable to type 'U'.
return [j, k];
}
}
}
!!! error TS2322: Type 'boolean' is not assignable to type 'string'.

View File

@@ -1,36 +1,24 @@
//// [functionExpressionContextualTyping2.ts]
var g0: (n: number, s: string) => number
var i: typeof g0 | ((n: number, s: string) => string);
i = (foo, bar) => { return true; }
// A contextual signature S is extracted from a function type T as follows:
// If T is a function type with exactly one call signature, and if that call signature is non- generic, S is that signature.
// If T is a union type, let U be the set of element types in T that have call signatures.
// If each type in U has exactly one call signature and that call signature is non- generic,
// and if all of the signatures are identical ignoring return types, then S is a signature
// with the same parameters and a union of the return types.
// Otherwise, no contextual signature can be extracted from T and S is undefined.
class C<T> { }
var j: (c: C<Number>) => number = (j) => { return 1; }
class C<T, U> {
constructor() {
var k: (j: T, k: U) => (T|U)[] = (j = 1, k = 0) => {
return [j, k];
}
}
}
var a0: (n: number, s: string) => number
var a1: typeof a0 | ((n: number, s: string) => string);
a1 = (foo, bar) => { return true; } // Error
//// [functionExpressionContextualTyping2.js]
var g0;
var i;
i = function (foo, bar) { return true; };
var C = (function () {
function C() {
}
return C;
})();
var j = function (j) { return 1; };
var C = (function () {
function C() {
var k = function (j, k) {
if (j === void 0) { j = 1; }
if (k === void 0) { k = 0; }
return [j, k];
};
}
return C;
})();
// A contextual signature S is extracted from a function type T as follows:
// If T is a function type with exactly one call signature, and if that call signature is non- generic, S is that signature.
// If T is a union type, let U be the set of element types in T that have call signatures.
// If each type in U has exactly one call signature and that call signature is non- generic,
// and if all of the signatures are identical ignoring return types, then S is a signature
// with the same parameters and a union of the return types.
// Otherwise, no contextual signature can be extracted from T and S is undefined.
var a0;
var a1;
a1 = function (foo, bar) { return true; }; // Error

View File

@@ -1,28 +1,52 @@
enum E { red, blue }
// When a function expression with no type parameters and no parameter type annotations
// is contextually typed (section 4.19) by a type T and a contextual signature S can be extracted from T
var g0: (n: number, s:string) => number;
var g: ((s: string, w: boolean) => void) | ((n: number) => number);
var g1: ((s: string, w: boolean) => void) | ((s: string, w: number) => string);
enum E { red, blue }
g1 = (j, m) => { } // Per spec, no contextual signature can be extracted in this case.
g = (k, h=true) => { k.toLowerCase() };
g = (k) => { k.toLowerCase() };
g = (i) => {
// A contextual signature S is extracted from a function type T as follows:
// If T is a function type with exactly one call signature, and if that call signature is non- generic, S is that signature.
var a0: (n: number, s: string) => number = (num, str) => {
num.toExponential();
return 0;
}
class Class<T> {
foo() { }
}
var a1: (c: Class<Number>) => number = (a1) => {
a1.foo();
return 1;
}
// A contextual signature S is extracted from a function type T as follows:
// If T is a union type, let U be the set of element types in T that have call signatures.
// If each type in U has exactly one call signature and that call signature is non- generic,
// and if all of the signatures are identical ignoring return types,
// then S is a signature with the same parameters and a union of the return types.
var b1: ((s: string, w: boolean) => void) | ((s: string, w: boolean) => string);
b1 = (k, h) => { };
var b2: typeof a0 | ((n: number, s: string) => string);
b2 = (foo, bar) => { return foo + 1; }
b2 = (foo, bar) => { return "hello"; }
var b3: (name: string, num: number, boo: boolean) => void;
b3 = (name, number) => { };
var b4: (n: E) => string = (number = 1) => { return "hello"; };
var b5: (n: {}) => string = (number = "string") => { return "hello"; };
// A contextual signature S is extracted from a function type T as follows:
// Otherwise, no contextual signature can be extracted from T and S is undefined.
var b6: ((s: string, w: boolean) => void) | ((n: number) => number);
var b7: ((s: string, w: boolean) => void) | ((s: string, w: number) => string);
b6 = (k) => { k.toLowerCase() };
b6 = (i) => {
i.toExponential();
return i;
}; // Per spec, no contextual signature can be extracted in this case.
}; // Per spec, no contextual signature can be extracted in this case. (Otherwise clause)
b7 = (j, m) => { }; // Per spec, no contextual signature can be extracted in this case. (Otherwise clause)
var h: ((s: string, w: boolean) => void) | ((s: string, w: boolean) => string);
h = (k, h) => { };
var i: typeof g0 | ((n: number, s: string) => string);
i = (foo, bar) => { return foo + 1; }
i = (foo, bar) => { return "hello"; }
var j: (name: string, num: number, boo: boolean) => void;
j = (name, number) => { };
var k: (n: E) => string = (number = 1) => { return "hello"; };
var k1: (n: {}) => string = (number = 1) => { return "hello"; };
class C<T, U> {
constructor() {
var k: ((j: T, k: U) => (T|U)[]) | ((j: number,k :U) => number[]) = (j, k) => {

View File

@@ -1,14 +1,11 @@
var g0: (n: number, s: string) => number
var i: typeof g0 | ((n: number, s: string) => string);
i = (foo, bar) => { return true; }
// A contextual signature S is extracted from a function type T as follows:
// If T is a function type with exactly one call signature, and if that call signature is non- generic, S is that signature.
// If T is a union type, let U be the set of element types in T that have call signatures.
// If each type in U has exactly one call signature and that call signature is non- generic,
// and if all of the signatures are identical ignoring return types, then S is a signature
// with the same parameters and a union of the return types.
// Otherwise, no contextual signature can be extracted from T and S is undefined.
class C<T> { }
var j: (c: C<Number>) => number = (j) => { return 1; }
class C<T, U> {
constructor() {
var k: (j: T, k: U) => (T|U)[] = (j = 1, k = 0) => {
return [j, k];
}
}
}
var a0: (n: number, s: string) => number
var a1: typeof a0 | ((n: number, s: string) => string);
a1 = (foo, bar) => { return true; } // Error