const go/token.LPAREN
28 uses
go/token (current package)
token.go#L83: LPAREN // (
token.go#L187: LPAREN: "(",
go/parser
parser.go#L766: for p.tok == token.IDENT || p.tok == token.MUL || p.tok == token.LPAREN {
parser.go#L889: lparen := p.expect(token.LPAREN)
parser.go#L903: if p.tok == token.LPAREN {
parser.go#L949: if ident, isIdent := x.(*ast.Ident); isIdent && p.tok == token.LPAREN {
parser.go#L1051: case token.LPAREN:
parser.go#L1159: case token.LPAREN:
parser.go#L1201: lparen := p.expect(token.LPAREN)
parser.go#L1266: lparen := p.expect(token.LPAREN)
parser.go#L1490: case token.LPAREN:
parser.go#L1504: case token.LPAREN:
parser.go#L2226: token.IDENT, token.INT, token.FLOAT, token.IMAG, token.CHAR, token.STRING, token.FUNC, token.LPAREN, // operands
parser.go#L2410: if p.tok == token.LPAREN {
parser.go#L2442: if p.tok == token.LPAREN {
go/printer
nodes.go#L323: p.print(fields.Opening, token.LPAREN)
nodes.go#L389: p.print(token.LPAREN, token.RPAREN)
nodes.go#L702: p.print(token.LPAREN)
nodes.go#L766: p.print(token.LPAREN)
nodes.go#L780: p.print(token.LPAREN)
nodes.go#L812: p.print(token.LPAREN)
nodes.go#L822: p.print(token.PERIOD, x.Lparen, token.LPAREN)
nodes.go#L885: p.print(token.LPAREN)
nodes.go#L891: p.print(x.Lparen, token.LPAREN)
nodes.go#L1610: p.print(d.Lparen, token.LPAREN)
printer.go#L769: (tok != token.RPAREN || p.prevOpen == token.LPAREN) &&
printer.go#L887: case token.LPAREN, token.LBRACK:
go/scanner
scanner.go#L851: tok = token.LPAREN
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |