* @brief Returns @c true if function takes variable number of arguments, * @c false otherwise. */
| 130 | * @c false otherwise. |
| 131 | */ |
| 132 | bool Function::isVarArg() const |
| 133 | { |
| 134 | return functionType->isVarArg(); |
| 135 | } |
| 136 | |
| 137 | /** |
| 138 | * @brief Creates function. |
no outgoing calls