We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
extends
TypeScript Version: nightly (2.6.0-dev.20170923)
Code
class A { a() {} } /** @augments {A} */ class B { b() { this.a(); } } // @ts-ignore inherit(A, B);
Expected behavior:
Either:
@augments
A
B
Actual behavior:
@augments is ignored unless we actually see extends.
Noticed while working on #18739.