-2
Can't collapse method with big method's header
Here is example of C++ code
If I want to collapse whole method, I get:
void myMethod1(const std::vector >& matches1,
const std::vector >& matches2,
std::vector& symMatches) {
// Some code of method
// ...
// some code
}
If I want to collapse whole method, I get:
void myMethod1(const std::vector >& matches1, ... // Some code of method // ... // some code }So, It collapses not the method's body, but method's header
Customer support service by UserEcho