| 131 | bool Type::isPrimitiveType() const { return isIntegerType() || isFloatType(); } |
| 132 | |
| 133 | bool Type::isIntegerType() const { return ID == Type::TypeID_Integer; } |
| 134 | |
| 135 | bool Type::isFloatType() const { return ID == Type::TypeID_Float; } |
| 136 |
no outgoing calls