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 96 97 98 99 100 101 102 103 104 105 106 107 108 109
|
=== tests/cases/conformance/jsdoc/a.js ===
function A () {
>A : typeof A
this.x = 1
>this.x = 1 : 1
>this.x : any
>this : any
>x : any
>1 : 1
/** @type {1} */
this.first = this.second = 1
>this.first = this.second = 1 : 1
>this.first : any
>this : any
>first : any
>this.second = 1 : 1
>this.second : any
>this : any
>second : any
>1 : 1
}
/** @param {number} n */
A.prototype.y = A.prototype.z = function f(n) {
>A.prototype.y = A.prototype.z = function f(n) { return n + this.x} : (n: number) => number
>A.prototype.y : any
>A.prototype : any
>A : typeof A
>prototype : any
>y : any
>A.prototype.z = function f(n) { return n + this.x} : (n: number) => number
>A.prototype.z : any
>A.prototype : any
>A : typeof A
>prototype : any
>z : any
>function f(n) { return n + this.x} : (n: number) => number
>f : (n: number) => number
>n : number
return n + this.x
>n + this.x : number
>n : number
>this.x : number
>this : A
>x : number
}
/** @param {number} m */
A.s = A.t = function g(m) {
>A.s = A.t = function g(m) { return m + this.x} : (m: number) => any
>A.s : (m: number) => any
>A : typeof A
>s : (m: number) => any
>A.t = function g(m) { return m + this.x} : (m: number) => any
>A.t : (m: number) => any
>A : typeof A
>t : (m: number) => any
>function g(m) { return m + this.x} : (m: number) => any
>g : (m: number) => any
>m : number
return m + this.x
>m + this.x : any
>m : number
>this.x : any
>this : typeof A
>x : any
}
var a = new A()
>a : A
>new A() : A
>A : typeof A
a.y('no') // error
>a.y('no') : number
>a.y : (n: number) => number
>a : A
>y : (n: number) => number
>'no' : "no"
a.z('not really') // error
>a.z('not really') : number
>a.z : (n: number) => number
>a : A
>z : (n: number) => number
>'not really' : "not really"
A.s('still no') // error
>A.s('still no') : any
>A.s : (m: number) => any
>A : typeof A
>s : (m: number) => any
>'still no' : "still no"
A.t('not here either') // error
>A.t('not here either') : any
>A.t : (m: number) => any
>A : typeof A
>t : (m: number) => any
>'not here either' : "not here either"
a.first = 10 // error: '10' isn't assignable to '1'
>a.first = 10 : 10
>a.first : 1
>a : A
>first : 1
>10 : 10
|