func removeUnexported()

in auto-detect.go [106:114]


func removeUnexported(slice []string) []string {
	result := []string{}
	for _, val := range slice {
		if token.IsExported(val) {
			result = append(result, val)
		}
	}
	return result
}