| 142 | } |
| 143 | |
| 144 | bool ILType::IsInt() |
| 145 | { |
| 146 | auto basicType = dynamic_cast<ILBasicType*>(this); |
| 147 | if (basicType) |
| 148 | return basicType->Type == ILBaseType::Int; |
| 149 | else |
| 150 | return false; |
| 151 | } |
| 152 | |
| 153 | bool ILType::IsUInt() |
| 154 | { |
no outgoing calls
no test coverage detected