2 Star 1 Fork 1

mosache/YFrame

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
print_visitor.go 415 Bytes
一键复制 编辑 原始数据 按行查看 历史
ヤ沒脩袮兲︶ 提交于 2023-07-17 12:07 . temp
package ast
import (
"fmt"
"go/ast"
"log"
"reflect"
)
type PrintVisitor struct {
}
func (p PrintVisitor) Visit(node ast.Node) (w ast.Visitor) {
if node == nil {
fmt.Println(nil)
return p
}
typ := reflect.TypeOf(node)
val := reflect.ValueOf(node)
for typ.Kind() == reflect.Ptr {
typ = typ.Elem()
val = val.Elem()
}
log.Printf("type = %v,val = %v \n", typ.Name(), val.Interface())
return p
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/mosache/YFrame.git
git@gitee.com:mosache/YFrame.git
mosache
YFrame
YFrame
v0.1.78

搜索帮助