-
Notifications
You must be signed in to change notification settings - Fork 12.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5474 from Microsoft/forbid-this-as-constructor-pa…
…rameter-type Forbid this as constructor parameter type
- Loading branch information
Showing
8 changed files
with
142 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
tests/cases/conformance/types/thisType/thisTypeErrors2.ts(2,20): error TS2526: A 'this' type is available only in a non-static member of a class or interface. | ||
tests/cases/conformance/types/thisType/thisTypeErrors2.ts(9,38): error TS2526: A 'this' type is available only in a non-static member of a class or interface. | ||
|
||
|
||
==== tests/cases/conformance/types/thisType/thisTypeErrors2.ts (2 errors) ==== | ||
class Base { | ||
constructor(a: this) { | ||
~~~~ | ||
!!! error TS2526: A 'this' type is available only in a non-static member of a class or interface. | ||
} | ||
} | ||
class Generic<T> { | ||
} | ||
class Derived { | ||
n: number; | ||
constructor(public host: Generic<this>) { | ||
~~~~ | ||
!!! error TS2526: A 'this' type is available only in a non-static member of a class or interface. | ||
let self: this = this; | ||
this.n = 12; | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
//// [thisTypeErrors2.ts] | ||
class Base { | ||
constructor(a: this) { | ||
} | ||
} | ||
class Generic<T> { | ||
} | ||
class Derived { | ||
n: number; | ||
constructor(public host: Generic<this>) { | ||
let self: this = this; | ||
this.n = 12; | ||
} | ||
} | ||
|
||
|
||
//// [thisTypeErrors2.js] | ||
var Base = (function () { | ||
function Base(a) { | ||
} | ||
return Base; | ||
})(); | ||
var Generic = (function () { | ||
function Generic() { | ||
} | ||
return Generic; | ||
})(); | ||
var Derived = (function () { | ||
function Derived(host) { | ||
this.host = host; | ||
var self = this; | ||
this.n = 12; | ||
} | ||
return Derived; | ||
})(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
tests/cases/conformance/types/thisType/thisTypeInClasses.ts(4,20): error TS2526: A 'this' type is available only in a non-static member of a class or interface. | ||
|
||
|
||
==== tests/cases/conformance/types/thisType/thisTypeInClasses.ts (1 errors) ==== | ||
class C1 { | ||
x: this; | ||
f(x: this): this { return undefined; } | ||
constructor(x: this) { } | ||
~~~~ | ||
!!! error TS2526: A 'this' type is available only in a non-static member of a class or interface. | ||
} | ||
|
||
class C2 { | ||
[x: string]: this; | ||
} | ||
|
||
interface Foo<T> { | ||
x: T; | ||
y: this; | ||
} | ||
|
||
class C3 { | ||
a: this[]; | ||
b: [this, this]; | ||
c: this | Date; | ||
d: this & Date; | ||
e: (((this))); | ||
f: (x: this) => this; | ||
g: new (x: this) => this; | ||
h: Foo<this>; | ||
i: Foo<this | (() => this)>; | ||
j: (x: any) => x is this; | ||
} | ||
|
||
declare class C4 { | ||
x: this; | ||
f(x: this): this; | ||
} | ||
|
||
class C5 { | ||
foo() { | ||
let f1 = (x: this): this => this; | ||
let f2 = (x: this) => this; | ||
let f3 = (x: this) => (y: this) => this; | ||
let f4 = (x: this) => { | ||
let g = (y: this) => { | ||
return () => this; | ||
} | ||
return g(this); | ||
} | ||
} | ||
bar() { | ||
let x1 = <this>undefined; | ||
let x2 = undefined as this; | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
class Base { | ||
constructor(a: this) { | ||
} | ||
} | ||
class Generic<T> { | ||
} | ||
class Derived { | ||
n: number; | ||
constructor(public host: Generic<this>) { | ||
let self: this = this; | ||
this.n = 12; | ||
} | ||
} |