标签: typescript abstract-syntax-tree
示例:
import { method } from 'lib' const a = method const b = a const c = method // a b c is the same function
在AST中,我可以从ImportDeclaration获取变量名称method,
method
但是如何找到a b c?
a
b
c
我的目的是记录method曾在哪里打电话