type github.com/go-git/gcfg/token.Token
7 uses
github.com/go-git/gcfg/token (current package)
token.go#L16: type Token int
token.go#L21: ILLEGAL Token = iota
token.go#L62: func (tok Token) String() string {
token.go#L64: if 0 <= tok && tok < Token(len(tokens)) {
token.go#L78: func (tok Token) IsLiteral() bool { return literal_beg < tok && tok < literal_end }
token.go#L83: func (tok Token) IsOperator() bool { return operator_beg < tok && tok < operator_end }
github.com/go-git/gcfg/scanner
scanner.go#L293: func (s *Scanner) Scan() (pos token.Pos, tok token.Token, lit string) {
![]() |
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. |