(JSDoc, JavaScript) Imported class types by require() are unresolved

未关闭
#59,964 1 条评论 0 个 reaction 已指派 1 人 在 GitHub 查看

@sandersn 已经在做这个了。

开始于 2024年9月20日。

评估

这个 Issue 还没有评估数据。

描述

Needs Investigation

Type: Bug

Does this issue occur when all extensions are disabled?: Yes

  • VS Code version: Code 1.93.1 (38c31bc77e0dd6ae88a4e9cc93428cc27a56ba40, 2024-09-11T17:20:05.685Z)
  • OS version: Linux x64 6.5.0-44-generic

Steps to Reproduce:

With source code below (a.js & b.js), there are two issues present in b.js, A and B.

  1. Issue.B is triggered without modification.
    TS server reports a.Foo as alias of class Foo, but Foo as unresolved.
  2. Issue.A is triggered if any of value/obj field or prop getter line is enabled in a.js exports.
    TS server reports a.Foo as unresolved.
    The only pattern to make TS server happy is localObj line.

IMO diagnostics information should be presented other than the casual /* unresolved */ any message.

// a.js
class Foo {
    constructor() {
        this.fprop = 123;
    }
}
const localObj = { prop: 456 };

exports = module.exports = {
    Foo,
    // value: 123,
    // obj: { prop: 456 },
    // get prop() { return 789 },
    // localObj,
};
// b.js
const a = require('./a');
const { Foo, } = a;

class Bar {
    /** @param {a.Foo} foo */
    constructor(foo) {
        this.bprop = foo.fprop;
    }
}

// Issue.A: a.Foo unresolved, .fprop is any
/** @param {a.Foo} foo */
function bar1(foo) {
    foo.fprop;
}

// Issue.B: Foo unresolved, .fprop is any
/** @param {Foo} foo */
function bar2(foo) {
    foo.fprop;
}

VS Code version: Code 1.93.1 (38c31bc77e0dd6ae88a4e9cc93428cc27a56ba40, 2024-09-11T17:20:05.685Z)
OS version: Linux x64 6.5.0-44-generic
Modes:

A/B Experiments
vsliv368:30146709
vspor879:30202332
vspor708:30202333
vspor363:30204092
vscoreces:30445986
vscod805cf:30301675
binariesv615:30325510
vsaa593:30376534
py29gd2263:31024239
c4g48928:30535728
azure-dev_surveyone:30548225
a9j8j154:30646983
962ge761:30959799
pythongtdpath:30769146
welcomedialogc:30910334
pythonnoceb:30805159
asynctok:30898717
pythonregdiag2:30936856
pythonmypyd1:30879173
2e7ec940:31000449
pythontbext0:30879054
accentitlementst:30995554
dsvsc016:30899300
dsvsc017:30899301
dsvsc018:30899302
cppperfnew:31000557
dsvsc020:30976470
pythonait:31006305
dsvsc021:30996838
9c06g630:31013171
pythoncenvpt:31062603
a69g1124:31058053
dvdeprecation:31068756
dwnewjupyter:31046869
impr_priority:31102340
refactort:31101459
ccplti:31098112

主要语言
Go
星标
111k
派生
14.4k
平均合并
1 天 15 小时
30 天内合并 PR
106

贡献指南

打开贡献指南

从这里开始

  1. 先读完整个 Issue,再读项目的贡献指南。
  2. 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
  3. Fork 仓库,在一个分支上完成修改。
  4. 提交 Pull Request,并在描述里引用这个 Issue 编号。

microsoft/TypeScript 的其他 Issue

查看 microsoft/TypeScript 的全部 Issue

相似的 Issue

更多 Go Issue

把新 issue 发到你的邮箱

精选适合新手参与的 GitHub issue 摘要。