const go/token.RPAREN
31 uses
go/token (current package)
token.go#L89: RPAREN // )
token.go#L193: RPAREN: ")",
go/parser
parser.go#L425: if p.tok != token.RPAREN && p.tok != token.RBRACE {
parser.go#L518: token.RPAREN: true,
parser.go#L838: if p.tok == token.RPAREN {
parser.go#L853: if !p.atComma("parameter list", token.RPAREN) {
parser.go#L857: for p.tok != token.RPAREN && p.tok != token.EOF {
parser.go#L866: if !p.atComma("parameter list", token.RPAREN) {
parser.go#L890: if p.tok != token.RPAREN {
parser.go#L893: rparen := p.expect(token.RPAREN)
parser.go#L1055: rparen := p.expect(token.RPAREN)
parser.go#L1165: rparen := p.expect(token.RPAREN)
parser.go#L1209: rparen := p.expect(token.RPAREN)
parser.go#L1270: for p.tok != token.RPAREN && p.tok != token.EOF && !ellipsis.IsValid() {
parser.go#L1276: if !p.atComma("argument list", token.RPAREN) {
parser.go#L1282: rparen := p.expectClosing(token.RPAREN, "argument list")
parser.go#L2413: for iota := 0; p.tok != token.RPAREN && p.tok != token.EOF; iota++ {
parser.go#L2416: rparen = p.expect(token.RPAREN)
go/printer
nodes.go#L382: p.print(fields.Closing, token.RPAREN)
nodes.go#L389: p.print(token.LPAREN, token.RPAREN)
nodes.go#L704: p.print(token.RPAREN)
nodes.go#L769: p.print(token.RPAREN)
nodes.go#L782: p.print(token.RPAREN)
nodes.go#L814: p.print(x.Rparen, token.RPAREN)
nodes.go#L828: p.print(x.Rparen, token.RPAREN)
nodes.go#L887: p.print(token.RPAREN)
nodes.go#L901: p.print(x.Rparen, token.RPAREN)
nodes.go#L1637: p.print(d.Rparen, token.RPAREN)
printer.go#L769: (tok != token.RPAREN || p.prevOpen == token.LPAREN) &&
printer.go#L957: token.INC, token.DEC, token.RPAREN, token.RBRACK, token.RBRACE:
go/scanner
scanner.go#L854: tok = token.RPAREN
 |
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. |