const go/token.IDENT
17 uses
go/token (current package)
token.go#L29: IDENT // main
token.go#L136: IDENT: "IDENT",
token.go#L294: return IDENT
go/parser
parser.go#L549: if p.tok == token.IDENT {
parser.go#L553: p.expect(token.IDENT) // use expect() error handling
parser.go#L766: for p.tok == token.IDENT || p.tok == token.MUL || p.tok == token.LPAREN {
parser.go#L977: for p.tok == token.IDENT {
parser.go#L1034: case token.IDENT:
parser.go#L1147: case token.IDENT:
parser.go#L1488: case token.IDENT:
parser.go#L1812: if tok != token.FALLTHROUGH && p.tok == token.IDENT {
parser.go#L2226: token.IDENT, token.INT, token.FLOAT, token.IMAG, token.CHAR, token.STRING, token.FUNC, token.LPAREN, // operands
parser.go#L2301: case token.IDENT:
go/printer
printer.go#L930: p.lastTok = token.IDENT
go/scanner
scanner.go#L798: case token.IDENT, token.BREAK, token.CONTINUE, token.FALLTHROUGH, token.RETURN:
scanner.go#L803: tok = token.IDENT
golang.org/x/pkgsite/internal/godoc/dochtml/internal/render
linkify.go#L454: case token.IDENT:
 |
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. |