| 146 | class ByteArraySource : public Source { |
| 147 | public: |
| 148 | ByteArraySource(const char* p, size_t n) : ptr_(p), left_(n) { } |
| 149 | ~ByteArraySource() override; |
| 150 | size_t Available() const override; |
| 151 | const char* Peek(size_t* len) override; |
nothing calls this directly
no outgoing calls
no test coverage detected