const go/token.RBRACE
31 uses
go/token (current package)
token.go#L91: RBRACE // }
token.go#L195: RBRACE: "}",
go/parser
parser.go#L425: if p.tok != token.RPAREN && p.tok != token.RBRACE {
parser.go#L520: token.RBRACE: true,
parser.go#L772: rbrace := p.expect(token.RBRACE)
parser.go#L980: rbrace := p.expect(token.RBRACE)
parser.go#L1079: for p.tok != token.CASE && p.tok != token.DEFAULT && p.tok != token.RBRACE && p.tok != token.EOF {
parser.go#L1097: rbrace := p.expect2(token.RBRACE)
parser.go#L1111: rbrace := p.expect2(token.RBRACE)
parser.go#L1349: for p.tok != token.RBRACE && p.tok != token.EOF {
parser.go#L1351: if !p.atComma("composite literal", token.RBRACE) {
parser.go#L1368: if p.tok != token.RBRACE {
parser.go#L1372: rbrace := p.expectClosing(token.RBRACE, "composite literal")
parser.go#L1797: if p.tok != token.SEMICOLON && p.tok != token.RBRACE {
parser.go#L2046: rbrace := p.expect(token.RBRACE)
parser.go#L2126: rbrace := p.expect(token.RBRACE)
parser.go#L2261: case token.RBRACE:
go/printer
nodes.go#L450: p.print(lbrace, token.LBRACE, rbrace, token.RBRACE)
nodes.go#L479: p.print(blank, rbrace, token.RBRACE)
nodes.go#L534: p.flush(p.posFor(rbrace), token.RBRACE) // make sure we don't lose the last line comment
nodes.go#L561: p.flush(p.posFor(rbrace), token.RBRACE) // make sure we don't lose the last line comment
nodes.go#L566: p.print(unindent, formfeed, rbrace, token.RBRACE)
nodes.go#L925: p.print(indent, unindent, mode, x.Rbrace, token.RBRACE, mode)
nodes.go#L1118: p.print(b.Rbrace, token.RBRACE)
nodes.go#L1340: p.print(unindent, formfeed, token.RBRACE)
nodes.go#L1386: p.print(body.Lbrace, token.LBRACE, body.Rbrace, token.RBRACE)
nodes.go#L1748: p.print(noExtraLinebreak, b.Rbrace, token.RBRACE, noExtraLinebreak)
printer.go#L432: if tok != token.RBRACE && pos.Column == next.Column {
printer.go#L781: tok == token.RBRACE && p.mode&noExtraLinebreak == 0 {
printer.go#L957: token.INC, token.DEC, token.RPAREN, token.RBRACK, token.RBRACE:
go/scanner
scanner.go#L864: tok = token.RBRACE
 |
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. |