lex the space after an equals sign in a function
()
| 42 | |
| 43 | // lex the space after an equals sign in a function |
| 44 | func (s *sshLexer) lexRspace() sshLexStateFn { |
| 45 | for { |
| 46 | next := s.peek() |
| 47 | if !isSpace(next) { |
| 48 | break |
| 49 | } |
| 50 | s.skip() |
| 51 | } |
| 52 | return s.lexRvalue |
| 53 | } |
| 54 | |
| 55 | func (s *sshLexer) lexEquals() sshLexStateFn { |
| 56 | for { |