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