mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 11:11:30 +03:00
25 lines
557 B
TypeScript
25 lines
557 B
TypeScript
|
// Initializer expressions for instance member variables are evaluated in the scope of the class constructor body but are not permitted to reference parameters or local variables of the constructor.
|
||
|
|
||
|
class C {
|
||
|
a = x; // error
|
||
|
b: typeof x; // error
|
||
|
constructor(x) { }
|
||
|
}
|
||
|
|
||
|
class D {
|
||
|
a = x; // error
|
||
|
b: typeof x; // error
|
||
|
constructor(public x) { }
|
||
|
}
|
||
|
|
||
|
class E {
|
||
|
a = this.x; // ok
|
||
|
b: typeof this.x; // error
|
||
|
constructor(public x) { }
|
||
|
}
|
||
|
|
||
|
class F<T> {
|
||
|
a = this.x; // ok
|
||
|
b = x; // error
|
||
|
constructor(public x: T) { }
|
||
|
}
|