| 26 | } |
| 27 | |
| 28 | static Value DictionaryGet(const String& key) |
| 29 | { |
| 30 | ScriptFrame *vframe = ScriptFrame::GetCurrentFrame(); |
| 31 | Dictionary::Ptr self = static_cast<Dictionary::Ptr>(vframe->Self); |
| 32 | REQUIRE_NOT_NULL(self); |
| 33 | return self->Get(key); |
| 34 | } |
| 35 | |
| 36 | static void DictionaryRemove(const String& key) |
| 37 | { |