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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411
|
=== tests/cases/conformance/functions/functionImplementations.ts ===
// FunctionExpression with no return type annotation and no return statement returns void
var v: void = function () { } ();
>v : void
>function () { } () : void
>function () { } : () => void
// FunctionExpression f with no return type annotation and directly references f in its body returns any
var a: any = function f() {
>a : any
>function f() { return f;} : () => any
>f : () => any
return f;
>f : () => any
};
var a: any = function f() {
>a : any
>function f() { return f();} : () => any
>f : () => any
return f();
>f() : any
>f : () => any
};
// FunctionExpression f with no return type annotation and indirectly references f in its body returns any
var a: any = function f() {
>a : any
>function f() { var x = f; return x;} : () => any
>f : () => any
var x = f;
>x : () => any
>f : () => any
return x;
>x : () => any
};
// Two mutually recursive function implementations with no return type annotations
function rec1() {
>rec1 : () => any
return rec2();
>rec2() : any
>rec2 : () => any
}
function rec2() {
>rec2 : () => any
return rec1();
>rec1() : any
>rec1 : () => any
}
var a = rec1();
>a : any
>rec1() : any
>rec1 : () => any
var a = rec2();
>a : any
>rec2() : any
>rec2 : () => any
// Two mutually recursive function implementations with return type annotation in one
function rec3(): number {
>rec3 : () => number
return rec4();
>rec4() : number
>rec4 : () => number
}
function rec4() {
>rec4 : () => number
return rec3();
>rec3() : number
>rec3 : () => number
}
var n: number;
>n : number
var n = rec3();
>n : number
>rec3() : number
>rec3 : () => number
var n = rec4();
>n : number
>rec4() : number
>rec4 : () => number
// FunctionExpression with no return type annotation and returns a number
var n = function () {
>n : number
>function () { return 3;} () : number
>function () { return 3;} : () => number
return 3;
>3 : 3
} ();
// FunctionExpression with no return type annotation and returns null
var nu = null;
>nu : any
>null : null
var nu = function () {
>nu : any
>function () { return null;} () : any
>function () { return null;} : () => any
return null;
>null : null
} ();
// FunctionExpression with no return type annotation and returns undefined
var un = undefined;
>un : any
>undefined : undefined
var un = function () {
>un : any
>function () { return undefined;} () : any
>function () { return undefined;} : () => any
return undefined;
>undefined : undefined
} ();
// FunctionExpression with no return type annotation and returns a type parameter type
var n = function <T>(x: T) {
>n : number
>function <T>(x: T) { return x;} (4) : 4
>function <T>(x: T) { return x;} : <T>(x: T) => T
>x : T
return x;
>x : T
} (4);
>4 : 4
// FunctionExpression with no return type annotation and returns a constrained type parameter type
var n = function <T extends {}>(x: T) {
>n : number
>function <T extends {}>(x: T) { return x;} (4) : 4
>function <T extends {}>(x: T) { return x;} : <T extends {}>(x: T) => T
>x : T
return x;
>x : T
} (4);
>4 : 4
// FunctionExpression with no return type annotation with multiple return statements with identical types
var n = function () {
>n : number
>function () { return 3; return 5;}() : 3 | 5
>function () { return 3; return 5;} : () => 3 | 5
return 3;
>3 : 3
return 5;
>5 : 5
}();
// Otherwise, the inferred return type is the first of the types of the return statement expressions
// in the function body that is a supertype of each of the others,
// ignoring return statements with no expressions.
// A compile - time error occurs if no return statement expression has a type that is a supertype of each of the others.
// FunctionExpression with no return type annotation with multiple return statements with subtype relation between returns
class Base { private m; }
>Base : Base
>m : any
class Derived extends Base { private q; }
>Derived : Derived
>Base : Base
>q : any
var b: Base;
>b : Base
var b = function () {
>b : Base
>function () { return new Base(); return new Derived();} () : Base
>function () { return new Base(); return new Derived();} : () => Base
return new Base(); return new Derived();
>new Base() : Base
>Base : typeof Base
>new Derived() : Derived
>Derived : typeof Derived
} ();
// FunctionExpression with no return type annotation with multiple return statements with one a recursive call
var a = function f() {
>a : any
>function f() { return new Base(); return new Derived(); return f(); // ?} () : any
>function f() { return new Base(); return new Derived(); return f(); // ?} : () => any
>f : () => any
return new Base(); return new Derived(); return f(); // ?
>new Base() : Base
>Base : typeof Base
>new Derived() : Derived
>Derived : typeof Derived
>f() : any
>f : () => any
} ();
// FunctionExpression with non -void return type annotation with a single throw statement
undefined === function (): number {
>undefined === function (): number { throw undefined;} : boolean
>undefined : undefined
>function (): number { throw undefined;} : () => number
throw undefined;
>undefined : undefined
};
// Type of 'this' in function implementation is 'any'
function thisFunc() {
>thisFunc : () => void
var x = this;
>x : any
>this : any
var x: any;
>x : any
}
// Function signature with optional parameter, no type annotation and initializer has initializer's type
function opt1(n = 4) {
>opt1 : (n?: number) => void
>n : number
>4 : 4
var m = n;
>m : number
>n : number
var m: number;
>m : number
}
// Function signature with optional parameter, no type annotation and initializer has initializer's widened type
function opt2(n = { x: null, y: undefined }) {
>opt2 : (n?: { x: any; y: any; }) => void
>n : { x: any; y: any; }
>{ x: null, y: undefined } : { x: null; y: undefined; }
>x : null
>null : null
>y : undefined
>undefined : undefined
var m = n;
>m : { x: any; y: any; }
>n : { x: any; y: any; }
var m: { x: any; y: any };
>m : { x: any; y: any; }
>x : any
>y : any
}
// Function signature with initializer referencing other parameter to the left
function opt3(n: number, m = n) {
>opt3 : (n: number, m?: number) => void
>n : number
>m : number
>n : number
var y = m;
>y : number
>m : number
var y: number;
>y : number
}
// Function signature with optional parameter has correct codegen
// (tested above)
// FunctionExpression with non -void return type annotation return with no expression
function f6(): number {
>f6 : () => number
return;
}
class Derived2 extends Base { private r: string; }
>Derived2 : Derived2
>Base : Base
>r : string
class AnotherClass { private x }
>AnotherClass : AnotherClass
>x : any
// if f is a contextually typed function expression, the inferred return type is the union type
// of the types of the return statement expressions in the function body,
// ignoring return statements with no expressions.
var f7: (x: number) => string | number = x => { // should be (x: number) => number | string
>f7 : (x: number) => string | number
>x : number
>x => { // should be (x: number) => number | string if (x < 0) { return x; } return x.toString();} : (x: number) => string | number
>x : number
if (x < 0) { return x; }
>x < 0 : boolean
>x : number
>0 : 0
>x : number
return x.toString();
>x.toString() : string
>x.toString : (radix?: number) => string
>x : number
>toString : (radix?: number) => string
}
var f8: (x: number) => any = x => { // should be (x: number) => Base
>f8 : (x: number) => any
>x : number
>x => { // should be (x: number) => Base return new Base(); return new Derived2();} : (x: number) => Base
>x : number
return new Base();
>new Base() : Base
>Base : typeof Base
return new Derived2();
>new Derived2() : Derived2
>Derived2 : typeof Derived2
}
var f9: (x: number) => any = x => { // should be (x: number) => Base
>f9 : (x: number) => any
>x : number
>x => { // should be (x: number) => Base return new Base(); return new Derived(); return new Derived2();} : (x: number) => Base
>x : number
return new Base();
>new Base() : Base
>Base : typeof Base
return new Derived();
>new Derived() : Derived
>Derived : typeof Derived
return new Derived2();
>new Derived2() : Derived2
>Derived2 : typeof Derived2
}
var f10: (x: number) => any = x => { // should be (x: number) => Derived | Derived1
>f10 : (x: number) => any
>x : number
>x => { // should be (x: number) => Derived | Derived1 return new Derived(); return new Derived2();} : (x: number) => Derived | Derived2
>x : number
return new Derived();
>new Derived() : Derived
>Derived : typeof Derived
return new Derived2();
>new Derived2() : Derived2
>Derived2 : typeof Derived2
}
var f11: (x: number) => any = x => { // should be (x: number) => Base | AnotherClass
>f11 : (x: number) => any
>x : number
>x => { // should be (x: number) => Base | AnotherClass return new Base(); return new AnotherClass();} : (x: number) => Base | AnotherClass
>x : number
return new Base();
>new Base() : Base
>Base : typeof Base
return new AnotherClass();
>new AnotherClass() : AnotherClass
>AnotherClass : typeof AnotherClass
}
var f12: (x: number) => any = x => { // should be (x: number) => Base | AnotherClass
>f12 : (x: number) => any
>x : number
>x => { // should be (x: number) => Base | AnotherClass return new Base(); return; // should be ignored return new AnotherClass();} : (x: number) => Base | AnotherClass
>x : number
return new Base();
>new Base() : Base
>Base : typeof Base
return; // should be ignored
return new AnotherClass();
>new AnotherClass() : AnotherClass
>AnotherClass : typeof AnotherClass
}
|