| 58 | } |
| 59 | |
| 60 | static Dictionary::Ptr DictionaryShallowClone() |
| 61 | { |
| 62 | ScriptFrame *vframe = ScriptFrame::GetCurrentFrame(); |
| 63 | Dictionary::Ptr self = static_cast<Dictionary::Ptr>(vframe->Self); |
| 64 | REQUIRE_NOT_NULL(self); |
| 65 | return self->ShallowClone(); |
| 66 | } |
| 67 | |
| 68 | static Array::Ptr DictionaryKeys() |
| 69 | { |
nothing calls this directly
no test coverage detected