| 9 | class PycString : public PycObject { |
| 10 | public: |
| 11 | PycString(int type = TYPE_STRING) |
| 12 | : PycObject(type) { } |
| 13 | |
| 14 | bool isEqual(PycRef<PycObject> obj) const override; |
| 15 | bool isEqual(const std::string& str) const { return m_value == str; } |
nothing calls this directly
no outgoing calls
no test coverage detected