const go/token.XOR

14 uses

	go/token (current package)
		token.go#L46: 	XOR     // ^
		token.go#L155: 	XOR:     "^",
		token.go#L274: 	case ADD, SUB, OR, XOR:

	go/constant
		value.go#L987: 	case token.XOR:
		value.go#L1149: 		case token.XOR:
		value.go#L1179: 		case token.XOR:

	go/parser
		parser.go#L1780: 	case token.ADD, token.SUB, token.NOT, token.XOR, token.AND, token.TILDE:
		parser.go#L2437: 		token.ADD, token.SUB, token.MUL, token.AND, token.XOR, token.ARROW, token.NOT: // unary operators

	go/scanner
		scanner.go#L918: 			tok = s.switch2(token.XOR, token.XOR_ASSIGN)

	go/types
		expr.go#L68: 		token.XOR: allInteger,
		expr.go#L116: 	token.XOR: "bitwise complement",
		expr.go#L123: 	token.XOR: "bitwise XOR",
		expr.go#L181: 		op = token.XOR
		expr.go#L743: 		token.XOR:     allInteger,