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#L1148: case token.AND:
value.go#L1178: case token.AND:
go/parser
parser.go#L1800: case token.ADD, token.SUB, token.NOT, token.XOR, token.AND, token.TILDE:
parser.go#L2457: 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#L960: tok = s.switch3(token.AND, token.AND_ASSIGN, '&', token.LAND)
go/types
expr.go#L137: case token.AND:
expr.go#L767: token.AND: allInteger,