|
1 | 1 | tests/cases/conformance/classes/members/classTypes/instancePropertiesInheritedIntoClassType.ts(4,13): error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
|
2 | 2 | tests/cases/conformance/classes/members/classTypes/instancePropertiesInheritedIntoClassType.ts(7,13): error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
|
3 |
| -tests/cases/conformance/classes/members/classTypes/instancePropertiesInheritedIntoClassType.ts(19,16): message TS6232: This expression is not callable because it is a 'get' accessor. Did you mean to use it without '()'? |
| 3 | +tests/cases/conformance/classes/members/classTypes/instancePropertiesInheritedIntoClassType.ts(19,16): message TS6234: This expression is not callable because it is a 'get' accessor. Did you mean to use it without '()'? |
| 4 | + Type 'Number' has no call signatures. |
4 | 5 | tests/cases/conformance/classes/members/classTypes/instancePropertiesInheritedIntoClassType.ts(26,13): error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
|
5 | 6 | tests/cases/conformance/classes/members/classTypes/instancePropertiesInheritedIntoClassType.ts(29,13): error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
|
6 |
| -tests/cases/conformance/classes/members/classTypes/instancePropertiesInheritedIntoClassType.ts(41,16): message TS6232: This expression is not callable because it is a 'get' accessor. Did you mean to use it without '()'? |
| 7 | +tests/cases/conformance/classes/members/classTypes/instancePropertiesInheritedIntoClassType.ts(41,16): message TS6234: This expression is not callable because it is a 'get' accessor. Did you mean to use it without '()'? |
| 8 | + Type 'String' has no call signatures. |
7 | 9 |
|
8 | 10 |
|
9 | 11 | ==== tests/cases/conformance/classes/members/classTypes/instancePropertiesInheritedIntoClassType.ts (6 errors) ====
|
@@ -31,8 +33,8 @@ tests/cases/conformance/classes/members/classTypes/instancePropertiesInheritedIn
|
31 | 33 | r.y = 4;
|
32 | 34 | var r6 = d.y(); // error
|
33 | 35 | ~
|
34 |
| -!!! message TS6232: This expression is not callable because it is a 'get' accessor. Did you mean to use it without '()'? |
35 |
| -!!! related TS2728 tests/cases/conformance/classes/members/classTypes/instancePropertiesInheritedIntoClassType.ts:4:13: 'y' is declared here. |
| 36 | +!!! message TS6234: This expression is not callable because it is a 'get' accessor. Did you mean to use it without '()'? |
| 37 | +!!! message TS6234: Type 'Number' has no call signatures. |
36 | 38 |
|
37 | 39 | }
|
38 | 40 |
|
@@ -60,6 +62,6 @@ tests/cases/conformance/classes/members/classTypes/instancePropertiesInheritedIn
|
60 | 62 | r.y = '';
|
61 | 63 | var r6 = d.y(); // error
|
62 | 64 | ~
|
63 |
| -!!! message TS6232: This expression is not callable because it is a 'get' accessor. Did you mean to use it without '()'? |
64 |
| -!!! related TS2728 tests/cases/conformance/classes/members/classTypes/instancePropertiesInheritedIntoClassType.ts:26:13: 'y' is declared here. |
| 65 | +!!! message TS6234: This expression is not callable because it is a 'get' accessor. Did you mean to use it without '()'? |
| 66 | +!!! message TS6234: Type 'String' has no call signatures. |
65 | 67 | }
|
0 commit comments