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) {