(str string)
| 29 | var _ textSource = stringSource{} |
| 30 | |
| 31 | func newStringSource(str string) stringSource { |
| 32 | return stringSource{ |
| 33 | reader: strings.NewReader(str), |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | func (s stringSource) Changed() bool { |
| 38 | return false |
no outgoing calls
no test coverage detected
searching dependent graphs…