| 26 | } |
| 27 | |
| 28 | static void NamespaceRemove(const String& key) |
| 29 | { |
| 30 | ScriptFrame *vframe = ScriptFrame::GetCurrentFrame(); |
| 31 | Namespace::Ptr self = static_cast<Namespace::Ptr>(vframe->Self); |
| 32 | REQUIRE_NOT_NULL(self); |
| 33 | self->Remove(key); |
| 34 | } |
| 35 | |
| 36 | static bool NamespaceContains(const String& key) |
| 37 | { |