| 135 | bool Type::isFloatType() const { return ID == Type::TypeID_Float; } |
| 136 | |
| 137 | bool Type::isEnumType() const { return ID == Type::TypeID_Enum; } |
| 138 | |
| 139 | bool Type::isPointerType() const { return ID == Type::TypeID_Pointer; } |
| 140 |
no outgoing calls
no test coverage detected