| 95 | } |
| 96 | |
| 97 | static Array::Ptr ArrayShallowClone() |
| 98 | { |
| 99 | ScriptFrame *vframe = ScriptFrame::GetCurrentFrame(); |
| 100 | Array::Ptr self = static_cast<Array::Ptr>(vframe->Self); |
| 101 | REQUIRE_NOT_NULL(self); |
| 102 | return self->ShallowClone(); |
| 103 | } |
| 104 | |
| 105 | static Value ArrayJoin(const Value& separator) |
| 106 | { |
nothing calls this directly
no test coverage detected