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
|
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 '()'?
Type 'Number' has no call signatures.
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 '()'?
Type 'String' has no call signatures.
==== tests/cases/conformance/classes/members/classTypes/instancePropertiesInheritedIntoClassType.ts (2 errors) ====
module NonGeneric {
class C {
x: string;
get y() {
return 1;
}
set y(v) { }
fn() { return this; }
constructor(public a: number, private b: number) { }
}
class D extends C { e: string; }
var d = new D(1, 2);
var r = d.fn();
var r2 = r.x;
var r3 = r.y;
r.y = 4;
var r6 = d.y(); // error
~
!!! error TS6234: This expression is not callable because it is a 'get' accessor. Did you mean to use it without '()'?
!!! error TS6234: Type 'Number' has no call signatures.
}
module Generic {
class C<T, U> {
x: T;
get y() {
return null;
}
set y(v: U) { }
fn() { return this; }
constructor(public a: T, private b: U) { }
}
class D<T, U> extends C<T, U> { e: T; }
var d = new D(1, '');
var r = d.fn();
var r2 = r.x;
var r3 = r.y;
r.y = '';
var r6 = d.y(); // error
~
!!! error TS6234: This expression is not callable because it is a 'get' accessor. Did you mean to use it without '()'?
!!! error TS6234: Type 'String' has no call signatures.
}
|