| 6 | using namespace BinaryNinja; |
| 7 | |
| 8 | void ObjCActivity::Register(Workflow &workflow) |
| 9 | { |
| 10 | workflow.RegisterActivity(new Activity("core.analysis.objc.adjustCallType", &AdjustCallType)); |
| 11 | workflow.Insert("core.function.analyzeTailCalls", "core.analysis.objc.adjustCallType"); |
| 12 | } |
| 13 | |
| 14 | std::vector<std::string> splitSelector(const std::string& selector) { |
| 15 | std::vector<std::string> components; |
nothing calls this directly
no test coverage detected