| 68 | class SystemLibrary final : public Library { |
| 69 | public: |
| 70 | explicit SystemLibrary(String symbol_prefix) : symbol_prefix_(std::move(symbol_prefix)) {} |
| 71 | |
| 72 | void* GetSymbol(const String& name) final { |
| 73 | // The `name` might or might not already contain the symbol prefix. |
nothing calls this directly
no outgoing calls
no test coverage detected