const go/token.AND

11 uses

	go/token (current package)
		token.go#L45: 	AND     // &
		token.go#L154: 	AND:     "&",
		token.go#L280: 	case MUL, QUO, REM, SHL, SHR, AND, AND_NOT:

	go/constant
		value.go#L1138: 		case token.AND:
		value.go#L1168: 		case token.AND:

	go/parser
		parser.go#L1732: 	case token.ADD, token.SUB, token.NOT, token.XOR, token.AND:
		parser.go#L2440: 		token.ADD, token.SUB, token.MUL, token.AND, token.XOR, token.ARROW, token.NOT: // unary operators

	go/printer
		printer.go#L864: 	case token.AND:

	go/scanner
		scanner.go#L968: 				tok = s.switch3(token.AND, token.AND_ASSIGN, '&', token.LAND)

	go/types
		expr.go#L163: 	case token.AND:
		expr.go#L1050: 		token.AND:     allInteger,