TypeScript/tests/cases/compiler/jsdocAugments_noExtends.ts
Andy 1a2de721b5 Fixes to @augments handling (#18775)
* Fixes to @augments handling

* Renames and diagnostic changes

* Add test for < > characters

* Use more specific return type
2017-09-28 12:34:54 -07:00

14 lines
187 B
TypeScript

// @allowJs: true
// @checkJs: true
// @noEmit: true
// @Filename: /b.js
class A { constructor() { this.x = 0; } }
/** @augments A */
class B {
m() {
return this.x;
}
}