const go/token.AND
11 uses
go/token (current package)
token.go#L44: AND // &
token.go#L153: AND: "&",
token.go#L276: case MUL, QUO, REM, SHL, SHR, AND, AND_NOT:
go/constant
value.go#L1145: case token.AND:
value.go#L1175: case token.AND:
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/printer
printer.go#L879: case token.AND:
go/scanner
scanner.go#L937: tok = s.switch3(token.AND, token.AND_ASSIGN, '&', token.LAND)
go/types
expr.go#L137: case token.AND:
expr.go#L741: token.AND: allInteger,