| 184 | struct CppiaBoolExpr : public CppiaIntExpr |
| 185 | { |
| 186 | CppiaBoolExpr(const CppiaExpr *inSrc=0) : CppiaIntExpr(inSrc) {} |
| 187 | |
| 188 | const char *getName() HXCPP_OVERRIDE { return "CppiaBoolExpr"; } |
| 189 | hx::Object *runObject(CppiaCtx *ctx) HXCPP_OVERRIDE { return Dynamic(runInt(ctx) ? true : false).mPtr; } |
nothing calls this directly
no outgoing calls
no test coverage detected