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
|
=== tests/cases/conformance/jsdoc/declarations/source.js ===
/**
* Foos a bar together using an `a` and a `b`
* @param {number} a
* @param {string} b
*/
export function foo(a, b) {}
>foo : (a: number, b: string) => void
>a : number
>b : string
/**
* Legacy - DO NOT USE
*/
export class Aleph {
>Aleph : Aleph
/**
* Impossible to construct.
* @param {Aleph} a
* @param {null} b
*/
constructor(a, b) {
>a : Aleph
>b : null
/**
* Field is always null
*/
this.field = b;
>this.field = b : null
>this.field : any
>this : this
>field : any
>b : null
}
/**
* Doesn't actually do anything
* @returns {void}
*/
doIt() {}
>doIt : () => void
}
/**
* Not the speed of light
*/
export const c = 12;
>c : 12
>12 : 12
|