const go/token.CONST

15 uses

	go/token (current package)
		token.go#L101: 	CONST
		token.go#L207: 	CONST:    "const",

	go/doc
		doc.go#L131: 		Consts:     sortedValues(r.values, token.CONST),
		exports.go#L276: 	if tok == token.CONST {
		reader.go#L298: 		case decl.Tok == token.CONST && len(s.Values) == 0:
		reader.go#L576: 			case token.CONST, token.VAR:
		reader.go#L859: 			Consts:  sortedValues(t.values, token.CONST),

	go/parser
		parser.go#L370: 	token.CONST:       true,
		parser.go#L386: 	token.CONST: true,
		parser.go#L2434: 	case token.CONST, token.TYPE, token.VAR:
		parser.go#L2563: 	case token.CONST:
		parser.go#L2819: 	case token.CONST, token.VAR:
		resolver.go#L448: 		case token.CONST, token.VAR:

	go/printer
		nodes.go#L1677: 			if n > 1 && (d.Tok == token.CONST || d.Tok == token.VAR) {

	go/types
		decl.go#L385: 				case token.CONST: