| 2999 | }; |
| 3000 | struct EndsWith : StringHolder { |
| 3001 | EndsWith( NSString* substr ) : StringHolder( substr ){} |
| 3002 | |
| 3003 | bool match( NSString* str ) const override { |
| 3004 | return (str != nil || m_substr == nil ) && |
nothing calls this directly
no outgoing calls
no test coverage detected