type github.com/kevinburke/ssh_config.token

15 uses

	github.com/kevinburke/ssh_config (current package)
		lexer.go#L15: 	tokens        chan token
		lexer.go#L188: 	tok := token{
		lexer.go#L228: func lexSSH(input []byte) chan token {
		lexer.go#L232: 		tokens:        make(chan token),
		parser.go#L9: 	flow          chan token
		parser.go#L11: 	tokensBuffer  []token
		parser.go#L23: func (p *sshParser) raiseErrorf(tok *token, msg string, args ...interface{}) {
		parser.go#L28: func (p *sshParser) raiseError(tok *token, err error) {
		parser.go#L42: func (p *sshParser) peek() *token {
		parser.go#L55: func (p *sshParser) getToken() *token {
		parser.go#L100: 		tok = &token{typ: tokenEOF}
		parser.go#L171: func parseSSH(flow chan token, system bool, depth uint8) *Config {
		parser.go#L183: 		tokensBuffer:  make([]token, 0),
		token.go#L5: type token struct {
		token.go#L11: func (t token) String() string {