| 88 | |
| 89 | |
| 90 | Float runContextConvertFloat(StackContext *ctx, ExprType inType, void *inFunc) |
| 91 | { |
| 92 | switch(inType) |
| 93 | { |
| 94 | case etInt: return ctx->runInt(inFunc); |
| 95 | case etFloat: return ctx->runFloat(inFunc); |
| 96 | case etObject: return ctx->runObject(inFunc); |
| 97 | default: |
| 98 | ctx->runVoid(inFunc); |
| 99 | } |
| 100 | return 0; |
| 101 | } |
| 102 | |
| 103 | String runContextConvertString(StackContext *ctx, ExprType inType, void *inFunc) |
| 104 | { |