| 34 | } |
| 35 | |
| 36 | static void DictionaryRemove(const String& key) |
| 37 | { |
| 38 | ScriptFrame *vframe = ScriptFrame::GetCurrentFrame(); |
| 39 | Dictionary::Ptr self = static_cast<Dictionary::Ptr>(vframe->Self); |
| 40 | REQUIRE_NOT_NULL(self); |
| 41 | self->Remove(key); |
| 42 | } |
| 43 | |
| 44 | static void DictionaryClear() |
| 45 | { |