Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CommandList ¶
type CommandList []Command
CommandList 列表
func (CommandList) ExistCommand ¶
func (list CommandList) ExistCommand(name string) bool
ExistCommand 存在指令
func (CommandList) ExistCommandAttr ¶
func (list CommandList) ExistCommandAttr(name string, attr string) bool
ExistCommandAttr 存在指令
type ImportPathMap ¶
ImportPathMap 路径映射
func (ImportPathMap) MergeKey ¶
func (m ImportPathMap) MergeKey(om ImportPathMap) ImportPathMap
MergeKey 合并,如果有重复键,om里的值将会覆盖m的
type Info ¶
type Info struct { Name string // 名称,如:Info // 可以使用这个字段来断言到具体的类型,如go/types.Struct TypesType types.Type // go/types.Type接口 // 如果是导入的第三方包,会包含包路径,如:github.com/pkg/errors.fundamental Type string // 类型,表面类型 // 如type Status int的底下类型就是int UnderType string // 底下类型 ImportPath string // 导入路径 TypName string // 类型名,如果是结构体则与Name相同,如果是字段,则是字段的类型 TypNameWithPath string // 带有导入路径的类型名称,如:parser.Info CanUseAsMapKey bool // 字段类型是否可作为map的键 Comment string // 注释 Doc string // 文档 Commands CommandList // 指令,如list, list column, list map, list slicemap等中的一个或多个 }
Info 信息
func (*Info) GetImportPathAndTypeName ¶
GetImportPathAndTypeName 获取导入路径和类型名称
func (Info) GetNotEmptyImportPathMap ¶
func (info Info) GetNotEmptyImportPathMap() ImportPathMap
GetNotEmptyImportPathMap 获取非空导入路径映射
func (Info) GetTypNameWithPath ¶
GetTypNameWithPath 获取带路径类型名称
Click to show internal directories.
Click to hide internal directories.