【发布时间】:2021-07-15 16:01:35
【问题描述】:
是否有 VSCode 插件或 IDE 可以显示 TypeScript 函数的依赖关系或调用堆栈视图?
我想显示一个可以显示 TypeScript 函数调用堆栈视图的视图?
例如:
function foo() {
const something = a();
const anotherThing = b();
return c(something + anotherThing)
}
function a() { return a1() }
function a1() { return a2() }
function a2() { // do something }
function b() { return b1() }
function c() { return c1() }
然后我可以看到这样的视图:
【问题讨论】:
标签: javascript typescript visual-studio-code ide webstorm