| 205 | COMPILE_LLVM(virtual void CompileLLVM()); |
| 206 | |
| 207 | int GetInteger() |
| 208 | { |
| 209 | if(typeInfo == typeLong) |
| 210 | return (int)num.integer64; |
| 211 | else if(typeInfo == typeDouble || typeInfo == typeFloat) |
| 212 | return (int)num.real; |
| 213 | return num.integer; |
| 214 | } |
| 215 | long long GetLong() |
| 216 | { |
| 217 | if(typeInfo == typeLong) |
no outgoing calls
no test coverage detected