func go/ast.IsExported

6 uses

	go/ast (current package)
		ast.go#L572: func IsExported(name string) bool { return token.IsExported(name) }
		filter.go#L17: 	return IsExported(name)
		print.go#L221: 			if name := t.Field(i).Name; IsExported(name) {

	github.com/lann/builder
		builder.go#L123: 		if ast.IsExported(name) {
		builder.go#L204: 		if ast.IsExported(name) {

	golang.org/x/pkgsite/internal/godoc
		godoc.go#L82: 			if f.Name == nil || !ast.IsExported(f.Name.Name) {