This is a reusable decoder. This should not be used by more than one goroutine at the time.
| 29 | // This is a reusable decoder. |
| 30 | // This should not be used by more than one goroutine at the time. |
| 31 | type Decoder struct { |
| 32 | fs *fflib.FFLexer |
| 33 | } |
| 34 | |
| 35 | // NewDecoder returns a reusable Decoder. |
| 36 | func NewDecoder() *Decoder { |
nothing calls this directly
no outgoing calls
no test coverage detected