MCPcopy Create free account
hub / github.com/OpenAtomFoundation/SmartIDE / read

Method read

cli/pkg/ssh_config/lexer.go:121–131  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

119}
120
121func (s *sshLexer) read() rune {
122 r := s.peek()
123 if r == '\n' {
124 s.endbufferLine++
125 s.endbufferCol = 1
126 } else {
127 s.endbufferCol++
128 }
129 s.inputIdx++
130 return r
131}
132
133func (s *sshLexer) next() rune {
134 r := s.read()

Callers 1

nextMethod · 0.95

Calls 1

peekMethod · 0.95

Tested by

no test coverage detected