TypeScript/tests/cases/compiler/jsdocParamTagOnPropertyInitializer.ts
Andy 2ee92948d8
Support @param tag on property declaration initializer (#21907)
* Support @param tag on property declaration initializer

* Update test

* Finish updating test
2018-02-14 10:12:38 -08:00

11 lines
170 B
TypeScript

// @allowJs: true
// @checkJs: true
// @noEmit: true
// @noImplicitAny: true
// @Filename: /a.js
class Foo {
/**@param {string} x */
m = x => x.toLowerCase();
}