| 3199 | } |
| 3200 | |
| 3201 | static Token* findOpenParentesisOfMove(Token* moveVarTok) |
| 3202 | { |
| 3203 | Token* tok = moveVarTok; |
| 3204 | while (tok && tok->str() != "(") |
| 3205 | tok = tok->previous(); |
| 3206 | return tok; |
| 3207 | } |
| 3208 | |
| 3209 | static Token* findEndOfFunctionCallForParameter(Token* parameterToken) |
| 3210 | { |
no test coverage detected