| 79 | } |
| 80 | |
| 81 | bool Object::HasOwnField(const String& field) const |
| 82 | { |
| 83 | Type::Ptr type = GetReflectionType(); |
| 84 | |
| 85 | if (!type) |
| 86 | return false; |
| 87 | |
| 88 | return type->GetFieldId(field) != -1; |
| 89 | } |
| 90 | |
| 91 | bool Object::GetOwnField(const String& field, Value *result) const |
| 92 | { |
no test coverage detected