英文: Go: Get filepath from ast.File 问题 你可以通过 f.Name.String() 来获取 f 对应的源文件路径 srcPath。 英文: Assume I hav...
使用go ast从位置获取周围函数名称
英文: Use go ast to get surrounding function name from position 问题 通过源代码本身(无运行时检查),从文件位置获取周围函数名称的最佳方法是...
抽象语法树(AST)扫描
英文: abstract syntax tree (AST) scan 问题 我正在尝试从Go AST中提取函数调用: $ cat main.go package main import ("...
奇怪的 Eclipse AST 结果,带有内部枚举类
英文: Strange result of eclipse AST with inner enum class 问题 以下是翻译好的内容: 我正在尝试使用 Eclipse JDT AST 进行实验,但...
Antlr3:构建限定名称的解析树
英文: Antlr3: building parse tree for qualified names 问题 我无法找到一个与我的问题相近的问题/回答,能够帮助我解决我的问题。因此,我在这里发布这个问...
使用ast模块来获取函数中的所有函数调用。
英文: Use ast to get all function calls in a function 问题 我正在尝试使用ast列出函数中的所有函数调用。但是我对如何使用它感到困惑。我已经做到了这一...
如何表达“切片(字符串或’其他切片’)的类型”
英文: How to express type of "slice of (string or 'other such slice')" 问题 如何在Go中表示“一...
在Golang中进行多个接口转换的简洁方法是什么?
英文: Concise way to do multiple interface conversions in Golang? 问题 我正在尝试使用go/ast包从代码中解析函数调用。 为了做到这一点...
Go AST / Types – 如何判断错误?
英文: Go AST / Types - how to tell an error? 问题 有没有更好的方法来做这个?我需要知道变量v的类型是否是内置的"error"类型。我觉得应...
GoLang ast:生成并打印一棵没有位置信息的树
英文: GoLang ast: generating and printing a tree without position information 问题 我正在寻找一种工具,可以根据给定的输入生成...
4