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
|
tests/cases/compiler/autoLift2.ts(5,14): error TS2339: Property 'foo' does not exist on type 'A'.
tests/cases/compiler/autoLift2.ts(5,17): error TS1005: ';' expected.
tests/cases/compiler/autoLift2.ts(5,19): error TS2693: 'any' only refers to a type, but is being used as a value here.
tests/cases/compiler/autoLift2.ts(6,14): error TS2339: Property 'bar' does not exist on type 'A'.
tests/cases/compiler/autoLift2.ts(6,17): error TS1005: ';' expected.
tests/cases/compiler/autoLift2.ts(6,19): error TS2693: 'any' only refers to a type, but is being used as a value here.
tests/cases/compiler/autoLift2.ts(12,11): error TS2339: Property 'foo' does not exist on type 'A'.
tests/cases/compiler/autoLift2.ts(14,11): error TS2339: Property 'bar' does not exist on type 'A'.
tests/cases/compiler/autoLift2.ts(16,33): error TS2339: Property 'foo' does not exist on type 'A'.
tests/cases/compiler/autoLift2.ts(18,33): error TS2339: Property 'bar' does not exist on type 'A'.
==== tests/cases/compiler/autoLift2.ts (10 errors) ====
class A
{
constructor() {
this.foo: any;
~~~
!!! error TS2339: Property 'foo' does not exist on type 'A'.
~
!!! error TS1005: ';' expected.
~~~
!!! error TS2693: 'any' only refers to a type, but is being used as a value here.
this.bar: any;
~~~
!!! error TS2339: Property 'bar' does not exist on type 'A'.
~
!!! error TS1005: ';' expected.
~~~
!!! error TS2693: 'any' only refers to a type, but is being used as a value here.
}
baz() {
this.foo = "foo";
~~~
!!! error TS2339: Property 'foo' does not exist on type 'A'.
this.bar = "bar";
~~~
!!! error TS2339: Property 'bar' does not exist on type 'A'.
[1, 2].forEach((p) => this.foo);
~~~
!!! error TS2339: Property 'foo' does not exist on type 'A'.
[1, 2].forEach((p) => this.bar);
~~~
!!! error TS2339: Property 'bar' does not exist on type 'A'.
}
}
var a = new A();
a.baz();
|