| 562 | } |
| 563 | |
| 564 | bool asCDataType::IsMathType() const |
| 565 | { |
| 566 | if( tokenType == ttInt || tokenType == ttInt8 || tokenType == ttInt16 || tokenType == ttInt64 || |
| 567 | tokenType == ttUInt || tokenType == ttUInt8 || tokenType == ttUInt16 || tokenType == ttUInt64 || |
| 568 | tokenType == ttFloat || tokenType == ttDouble ) |
| 569 | return true; |
| 570 | |
| 571 | return false; |
| 572 | } |
| 573 | |
| 574 | bool asCDataType::IsIntegerType() const |
| 575 | { |
no outgoing calls
no test coverage detected