Microsoft/TypeScript
Auf GitHub ansehentsc with allowJs reports TS9005 error for nested anonymous constructor functions
Open
#57.523 geöffnet am 24. Feb. 2024
Domain: Declaration EmitHelp WantedPossible Improvement
Repository-Metriken
- Stars
- (48.455 Stars)
- PR-Merge-Metriken
- (Durchschn. Merge 6T 17h) (9 gemergte PRs in 30 T)
Beschreibung
🔎 Search Terms
TS9005: Declaration emit for this file requires using private name '(Anonymous function)'. An explicit type annotation may unblock declaration emit.
🕗 Version & Regression Information
- Occurs on versions 3.7.5 - nightly
- Related to PR #55472
Related to #55172
When 2 separate nested this bindings are used within constructor functions, the following error's returned always at the top of the file (this was really annoying to debug 😅)
Declaration emit for this file requires using private name '(Anonymous function)'. An explicit type annotation may unblock declaration emit.
⏯ Playground Link
💻 Code
const a = new function () {
this.b = new function () {
this.c = 1
}
}
🙁 Actual behavior
Complains
🙂 Expected behavior
Shouldn't complain
Additional information about the issue
No response