-
Notifications
You must be signed in to change notification settings - Fork 13.1k
Open
Labels
BugA bug in TypeScriptA bug in TypeScriptDomain: JSDocRelates to JSDoc parsing and type generationRelates to JSDoc parsing and type generationHelp WantedYou can do thisYou can do this
Milestone
Description
🔎 Search Terms
"jsdoc class @extends", "static initialization block", "static properties/methods", "class extends", "class is referenced directly or indirectly in its own base expression"
🕗 Version & Regression Information
- Static initialization blocks don't seem to be supported on versions
<= 4.3.5 - From
4.4.2to4.6.4everything seems to work fine - types are correct and no linting errors - Every version from
4.7.2onwards has the behaviour described in this issue
⏯ Playground Link
No response
💻 Code
a.js:
export class A {
static a() {}
}b.js:
// @ts-check
import { A } from "./a";
/**
* @extends A
*/
export class B extends A { // 'B' is referenced directly or indirectly in its own base expression.ts(2506)
static {
B.a(); // Property 'a' does not exist on type 'typeof B'. ts(2339)
}
constructor() {
super();
B.a(); // Property 'a' does not exist on type 'typeof B'. ts(2339)
}
b() {
B.a(); // Property 'a' does not exist on type 'typeof B'. ts(2339)
}
c = () => {
B.a(); // Property 'a' does not exist on type 'typeof B'. ts(2339)
};
static d() {
B.a(); // Property 'a' does not exist on type 'typeof B'. ts(2339)
}
get e() {
B.a(); // Property 'a' does not exist on type 'typeof B'. ts(2339)
return;
}
set e(value) {
B.a(); // Property 'a' does not exist on type 'typeof B'. ts(2339)
}
}🙁 Actual behavior
- Linting error under extending class's name:
'B' is referenced directly or indirectly in its own base expression.. - Linting error/unknown type for any use of
B.a().
🙂 Expected behavior
B.a() type is correct across files with no linting errors.
Additional information about the issue
- Removing
@extendsfixes the issue - Removing
B.a()from thestaticblock fixes the issue - Defining
Ain the same file fixes the issue
Possibly related to #51786.
trusktr
Metadata
Metadata
Assignees
Labels
BugA bug in TypeScriptA bug in TypeScriptDomain: JSDocRelates to JSDoc parsing and type generationRelates to JSDoc parsing and type generationHelp WantedYou can do thisYou can do this