func go/token.IsIdentifier

4 uses

	go/token (current package)
		token.go#L331: func IsIdentifier(name string) bool {

	go.pact.im/x/plumb/internal/cli
		cli.go#L164: 	if !token.IsIdentifier(packageName) || packageName == "_" {

	go.pact.im/x/plumb/internal/discover
		discover.go#L53: 		if !token.IsIdentifier(d.Name) {

	go.pact.im/x/plumb/internal/emit
		name.go#L64: 	if s == "" || s == "_" || (!token.IsIdentifier(s) && !token.IsKeyword(s)) {