| 227 | } |
| 228 | |
| 229 | bool Anon_obj::__HasField(const String &inName) |
| 230 | { |
| 231 | if (findFixed(inName)>=0) |
| 232 | return true; |
| 233 | if (!mFields.mPtr) |
| 234 | return false; |
| 235 | return __string_hash_exists(mFields,inName); |
| 236 | } |
| 237 | |
| 238 | bool Anon_obj::__Remove(String inKey) |
| 239 | { |
nothing calls this directly
no test coverage detected