| 50 | } |
| 51 | |
| 52 | static bool DictionaryContains(const String& key) |
| 53 | { |
| 54 | ScriptFrame *vframe = ScriptFrame::GetCurrentFrame(); |
| 55 | Dictionary::Ptr self = static_cast<Dictionary::Ptr>(vframe->Self); |
| 56 | REQUIRE_NOT_NULL(self); |
| 57 | return self->Contains(key); |
| 58 | } |
| 59 | |
| 60 | static Dictionary::Ptr DictionaryShallowClone() |
| 61 | { |