| 11 | using namespace icinga; |
| 12 | |
| 13 | static double ArrayLen() |
| 14 | { |
| 15 | ScriptFrame *vframe = ScriptFrame::GetCurrentFrame(); |
| 16 | Array::Ptr self = static_cast<Array::Ptr>(vframe->Self); |
| 17 | REQUIRE_NOT_NULL(self); |
| 18 | return self->GetLength(); |
| 19 | } |
| 20 | |
| 21 | static void ArraySet(int index, const Value& value) |
| 22 | { |