| 123 | return ValToInt(obj); |
| 124 | } |
| 125 | Float CppiaDynamicExpr::runFloat(CppiaCtx *ctx) |
| 126 | { |
| 127 | return ValToFloat(runObject(ctx)); |
| 128 | } |
| 129 | ::String CppiaDynamicExpr::runString(CppiaCtx *ctx) |
| 130 | { |
| 131 | hx::Object *result = runObject(ctx); |
no test coverage detected