1 回答
TA贡献1921条经验 获得超9个赞
你在寻找方法吗?以下是经过一些修改的版本:ObjectOf
func run(pass *analysis.Pass) (interface{}, error) {
for _, f := range pass.Files {
ast.Inspect(f, func(node ast.Node) bool {
name, ok := node.(*ast.Ident)
if !ok {
return true
}
if name == nil {
return true
}
fmt.Println("ident:", nodeString(node, pass.Fset))
obj := pass.TypesInfo.ObjectOf(name)
fmt.Println(obj)
if obj != nil {
fmt.Println(" pos:", pass.Fset.Position(obj.Pos()))
}
return true
})
}
return nil, nil
}
// nodeString formats a syntax tree in the style of gofmt.
func nodeString(n ast.Node, fset *token.FileSet) string {
var buf bytes.Buffer
format.Node(&buf, fset, n)
return buf.String()
}
在示例输入文件上运行时,它显示:
ident: randomcheck
<nil>
ident: xxx
func command-line-arguments.xxx()
pos: /home/eliben/temp/randomcheck.go:3:6
ident: demo
func command-line-arguments.demo()
pos: /home/eliben/temp/randomcheck.go:5:6
ident: xxx
func command-line-arguments.xxx()
pos: /home/eliben/temp/randomcheck.go:3:6
请注意,最后一个 id 是作为对顶级函数的引用及其正确位置等找到的。xxxxxx()
- 1 回答
- 0 关注
- 84 浏览
添加回答
举报