| 3038 | } |
| 3039 | |
| 3040 | std::vector<std::string> FunctionType::parameterNames() const |
| 3041 | { |
| 3042 | if (!hasBoundFirstArgument()) |
| 3043 | return m_parameterNames; |
| 3044 | return std::vector<std::string>(m_parameterNames.cbegin() + 1, m_parameterNames.cend()); |
| 3045 | } |
| 3046 | |
| 3047 | TypePointers FunctionType::returnParameterTypesWithoutDynamicTypes() const |
| 3048 | { |
no outgoing calls
no test coverage detected