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 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
|
=== tests/cases/compiler/derivedClasses.ts ===
class Red extends Color {
>Red : Red
>Color : Color
public shade() {
>shade : () => string
var getHue = () => { return this.hue(); };
>getHue : () => string
>() => { return this.hue(); } : () => string
>this.hue() : string
>this.hue : () => string
>this : this
>hue : () => string
return getHue() + " red";
>getHue() + " red" : string
>getHue() : string
>getHue : () => string
>" red" : " red"
}
}
class Color {
>Color : Color
public shade() { return "some shade"; }
>shade : () => string
>"some shade" : "some shade"
public hue() { return "some hue"; }
>hue : () => string
>"some hue" : "some hue"
}
class Blue extends Color {
>Blue : Blue
>Color : Color
public shade() {
>shade : () => string
var getHue = () => { return this.hue(); };
>getHue : () => string
>() => { return this.hue(); } : () => string
>this.hue() : string
>this.hue : () => string
>this : this
>hue : () => string
return getHue() + " blue";
>getHue() + " blue" : string
>getHue() : string
>getHue : () => string
>" blue" : " blue"
}
}
var r = new Red();
>r : Red
>new Red() : Red
>Red : typeof Red
var b = new Blue();
>b : Blue
>new Blue() : Blue
>Blue : typeof Blue
r.shade();
>r.shade() : string
>r.shade : () => string
>r : Red
>shade : () => string
r.hue();
>r.hue() : string
>r.hue : () => string
>r : Red
>hue : () => string
b.shade();
>b.shade() : string
>b.shade : () => string
>b : Blue
>shade : () => string
b.hue();
>b.hue() : string
>b.hue : () => string
>b : Blue
>hue : () => string
|