| 3067 | } |
| 3068 | |
| 3069 | TypePointers FunctionType::parameterTypes() const |
| 3070 | { |
| 3071 | if (!hasBoundFirstArgument()) |
| 3072 | return m_parameterTypes; |
| 3073 | return TypePointers(m_parameterTypes.cbegin() + 1, m_parameterTypes.cend()); |
| 3074 | } |
| 3075 | |
| 3076 | TypePointers const& FunctionType::parameterTypesIncludingSelf() const |
| 3077 | { |
no outgoing calls
no test coverage detected