const go/token.CONST

21 uses

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

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

	go/parser
		parser.go#L493: 	token.CONST:       true,
		parser.go#L509: 	token.CONST: true,
		parser.go#L2222: 	case token.CONST, token.TYPE, token.VAR:
		parser.go#L2351: 	case token.CONST:
		parser.go#L2499: 	case token.CONST, token.VAR:

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

	golang.org/x/pkgsite/internal/godoc/dochtml/internal/render
		linkify.go#L602: 			case token.CONST, token.VAR:
		synopsis.go#L38: 		case token.CONST, token.VAR:

	golang.org/x/pkgsite/internal/godoc/internal/doc
		doc.go#L146: 		Consts:     sortedValues(r.values, token.CONST),
		example.go#L422: 				if d.Tok == token.CONST && hasIota(d.Specs[0]) {
		exports.go#L254: 	if tok == token.CONST {
		reader.go#L267: 		case decl.Tok == token.CONST && len(s.Values) == 0:
		reader.go#L526: 			case token.CONST, token.VAR:
		reader.go#L809: 			Consts:       sortedValues(t.values, token.CONST),