| 2276 | return execResult; |
| 2277 | } |
| 2278 | int Executor::GetResultInt() |
| 2279 | { |
| 2280 | assert(lastResultType == OTYPE_INT); |
| 2281 | return lastResultInt; |
| 2282 | } |
| 2283 | double Executor::GetResultDouble() |
| 2284 | { |
| 2285 | assert(lastResultType == OTYPE_DOUBLE); |
no test coverage detected