()
| 224 | } |
| 225 | |
| 226 | func (s *sshLexer) run() { |
| 227 | for state := s.lexVoid; state != nil; { |
| 228 | state = state() |
| 229 | } |
| 230 | close(s.tokens) |
| 231 | } |
| 232 | |
| 233 | func lexSSH(input []byte) chan token { |
| 234 | runes := bytes.Runes(input) |
no outgoing calls
no test coverage detected