| 4081 | }; |
| 4082 | struct EndsWith : StringHolder { |
| 4083 | EndsWith( NSString* substr ) : StringHolder( substr ){} |
| 4084 | |
| 4085 | bool match( NSString* str ) const override { |
| 4086 | return (str != nil || m_substr == nil ) && |
nothing calls this directly
no outgoing calls
no test coverage detected