| 19 | } |
| 20 | |
| 21 | static void ArraySet(int index, const Value& value) |
| 22 | { |
| 23 | ScriptFrame *vframe = ScriptFrame::GetCurrentFrame(); |
| 24 | Array::Ptr self = static_cast<Array::Ptr>(vframe->Self); |
| 25 | REQUIRE_NOT_NULL(self); |
| 26 | self->Set(index, value); |
| 27 | } |
| 28 | |
| 29 | static Value ArrayGet(int index) |
| 30 | { |