Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var EmptyMergePackageFunc = func(input string) string {
return input
}
View Source
var Level = 7
View Source
var MergePackageFunc = func(input string) string { split := "/" if !strings.Contains(input, split) { split = "." } if !strings.Contains(input, split) { split = "::" } tmp := strings.Split(input, split) packageName := tmp[0] if packageName == input { packageName = "main" } if len(tmp) > Level { packageName = strings.Join(tmp[:(Level)], split) } return packageName }
Functions ¶
This section is empty.
Types ¶
type FullGraph ¶
func (*FullGraph) MergeHeaderFile ¶
Click to show internal directories.
Click to hide internal directories.