| 18 | } |
| 19 | |
| 20 | static void ObjectNotifyAttribute(const String& attribute) |
| 21 | { |
| 22 | ScriptFrame *vframe = ScriptFrame::GetCurrentFrame(); |
| 23 | Object::Ptr self = static_cast<Object::Ptr>(vframe->Self); |
| 24 | REQUIRE_NOT_NULL(self); |
| 25 | self->NotifyField(self->GetReflectionType()->GetFieldId(attribute)); |
| 26 | } |
| 27 | |
| 28 | static Object::Ptr ObjectClone() |
| 29 | { |
nothing calls this directly
no test coverage detected