| 18 | } |
| 19 | |
| 20 | static void ConfigObjectRestoreAttribute(const String& attr) |
| 21 | { |
| 22 | ScriptFrame *vframe = ScriptFrame::GetCurrentFrame(); |
| 23 | ConfigObject::Ptr self = vframe->Self; |
| 24 | REQUIRE_NOT_NULL(self); |
| 25 | return self->RestoreAttribute(attr); |
| 26 | } |
| 27 | |
| 28 | Object::Ptr ConfigObject::GetPrototype() |
| 29 | { |
nothing calls this directly
no test coverage detected