| 2070 | } |
| 2071 | |
| 2072 | bool Library::isentrypoint(const std::string &func) const |
| 2073 | { |
| 2074 | return func == "main" || mData->mEntrypoints.find(func) != mData->mEntrypoints.end(); |
| 2075 | } |
| 2076 | |
| 2077 | const std::set<std::string>& Library::defines() const |
| 2078 | { |
no test coverage detected