* @brief Returns function's function type - return type and parameters' types. */
| 32 | * @brief Returns function's function type - return type and parameters' types. |
| 33 | */ |
| 34 | std::shared_ptr<FunctionType> Function::getType() const |
| 35 | { |
| 36 | return functionType; |
| 37 | } |
| 38 | |
| 39 | /** |
| 40 | * @brief Returns function's return type. |
no outgoing calls
no test coverage detected