const go/token.RBRACE

33 uses

	go/token (current package)
		token.go#L91: 	RBRACE    // }
		token.go#L200: 	RBRACE:    "}",

	go/parser
		parser.go#L302: 	if p.tok != token.RPAREN && p.tok != token.RBRACE {
		parser.go#L397: 	token.RBRACE:    true,
		parser.go#L627: 		if p.tok == token.PERIOD || p.tok == token.STRING || p.tok == token.SEMICOLON || p.tok == token.RBRACE {
		parser.go#L685: 	rbrace := p.expect(token.RBRACE)
		parser.go#L1170: 	rbrace := p.expect(token.RBRACE)
		parser.go#L1298: 	for p.tok != token.CASE && p.tok != token.DEFAULT && p.tok != token.RBRACE && p.tok != token.EOF {
		parser.go#L1312: 	rbrace := p.expect2(token.RBRACE)
		parser.go#L1324: 	rbrace := p.expect2(token.RBRACE)
		parser.go#L1574: 	for p.tok != token.RBRACE && p.tok != token.EOF {
		parser.go#L1576: 		if !p.atComma("composite literal", token.RBRACE) {
		parser.go#L1593: 	if p.tok != token.RBRACE {
		parser.go#L1597: 	rbrace := p.expectClosing(token.RBRACE, "composite literal")
		parser.go#L1684: 				if p.tok != token.RBRACE {
		parser.go#L2024: 	if p.tok != token.SEMICOLON && p.tok != token.RBRACE {
		parser.go#L2262: 	rbrace := p.expect(token.RBRACE)
		parser.go#L2340: 	rbrace := p.expect(token.RBRACE)
		parser.go#L2473: 	case token.RBRACE:

	go/printer
		nodes.go#L489: 			p.print(lbrace, token.LBRACE, rbrace, token.RBRACE)
		nodes.go#L518: 			p.print(blank, rbrace, token.RBRACE)
		nodes.go#L573: 			p.flush(p.posFor(rbrace), token.RBRACE) // make sure we don't lose the last line comment
		nodes.go#L614: 			p.flush(p.posFor(rbrace), token.RBRACE) // make sure we don't lose the last line comment
		nodes.go#L619: 	p.print(unindent, formfeed, rbrace, token.RBRACE)
		nodes.go#L986: 		p.print(indent, unindent, mode, x.Rbrace, token.RBRACE, mode)
		nodes.go#L1179: 	p.print(b.Rbrace, token.RBRACE)
		nodes.go#L1401: 				p.print(unindent, formfeed, token.RBRACE)
		nodes.go#L1447: 			p.print(body.Lbrace, token.LBRACE, body.Rbrace, token.RBRACE)
		nodes.go#L1812: 		p.print(noExtraLinebreak, b.Rbrace, token.RBRACE, noExtraLinebreak)
		printer.go#L435: 				if tok != token.RBRACE && pos.Column == next.Column {
		printer.go#L786: 			tok == token.RBRACE && p.mode&noExtraLinebreak == 0 {
		printer.go#L962: 				token.INC, token.DEC, token.RPAREN, token.RBRACK, token.RBRACE:

	go/scanner
		scanner.go#L911: 			tok = token.RBRACE