| 30 | namespace lua { |
| 31 | |
| 32 | LuaBaseStream::LuaBaseStream(std::shared_ptr<io::BaseStream> stream) |
| 33 | : stream_(std::move(stream)) { |
| 34 | } |
| 35 | |
| 36 | std::string LuaBaseStream::read(size_t len) { |
| 37 | if (len == 0) { |
nothing calls this directly
no outgoing calls
no test coverage detected