TypeScript/tests/cases/conformance/expressions/functions/arrowFunctionContexts.ts
2014-07-12 17:30:19 -07:00

95 lines
2.3 KiB
TypeScript

// Arrow function used in with statement
with (window) {
var p = () => this;
}
// Arrow function as argument to super call
class Base {
constructor(n: any) { }
}
class Derived extends Base {
constructor() {
super(() => this);
}
}
// Arrow function as function argument
window.setTimeout(() => null, 100);
// Arrow function as value in array literal
var obj = (n: number) => '';
var obj: { (n: number): string; }; // OK
var arr = [(n: number) => ''];
var arr: { (n: number): string; }[]; // Incorrect error here (bug 829597)
// Arrow function as enum value
enum E {
x = () => 4, // Error expected
y = (() => this).length // error, can't use this in enum
}
// Arrow function as module variable initializer
module M {
export var a = (s) => '';
var b = (s) => s;
}
// Repeat above for module members that are functions? (necessary to redo all of them?)
module M2 {
// Arrow function used in with statement
with (window) {
var p = () => this;
}
// Arrow function as argument to super call
class Base {
constructor(n: any) { }
}
class Derived extends Base {
constructor() {
super(() => this);
}
}
// Arrow function as function argument
window.setTimeout(() => null, 100);
// Arrow function as value in array literal
var obj = (n: number) => '';
var obj: { (n: number): string; }; // OK
var arr = [(n: number) => ''];
var arr: { (n: number): string; }[]; // Incorrect error here (bug 829597)
// Arrow function as enum value
enum E {
x = () => 4, // Error expected
y = (() => this).length
}
// Arrow function as module variable initializer
module M {
export var a = (s) => '';
var b = (s) => s;
}
}
// <Identifier>(ParamList) => { ... } is a generic arrow function
var generic1 = <T>(n: T) => [n];
var generic1: { <T>(n: T): T[] }; // Incorrect error, Bug 829597
var generic2 = <T>(n: T) => { return [n]; };
var generic2: { <T>(n: T): T[] };
// <Identifier> ((ParamList) => { ... } ) is a type assertion to an arrow function
var asserted1 = <any>((n) => [n]);
var asserted1: any;
var asserted2 = <any>((n) => { return n; });
var asserted2: any;