| 2863 | }; |
| 2864 | struct EndsWith : StringHolder { |
| 2865 | EndsWith(NSString *substr) : StringHolder(substr) { |
| 2866 | } |
| 2867 | |
| 2868 | bool match(NSString *str) const override { |
| 2869 | return (str != nil || m_substr == nil) && [str rangeOfString:m_substr].location == [str length] - [m_substr length]; |
nothing calls this directly
no outgoing calls
no test coverage detected