| 10 | using namespace icinga; |
| 11 | |
| 12 | static String BooleanToString() |
| 13 | { |
| 14 | ScriptFrame *vframe = ScriptFrame::GetCurrentFrame(); |
| 15 | bool self = vframe->Self; |
| 16 | return self ? "true" : "false"; |
| 17 | } |
| 18 | |
| 19 | Object::Ptr Boolean::GetPrototype() |
| 20 | { |
nothing calls this directly
no outgoing calls
no test coverage detected