Test whether this type is a function type.
| 473 | |
| 474 | /// Test whether this type is a function type. |
| 475 | bool isFunction() const { return ( getTypeKind() == EngineTypeKindFunction ); } |
| 476 | |
| 477 | /// Test whether this type is a struct type. |
| 478 | bool isStruct() const { return ( getTypeKind() == EngineTypeKindStruct ); } |
no outgoing calls
no test coverage detected