| 2088 | }; |
| 2089 | |
| 2090 | LineInfo encloseAt ( ExpressionPtr expr ) { |
| 2091 | EncloseVisitor enc; |
| 2092 | expr->visit(enc); |
| 2093 | return enc.enclosure; |
| 2094 | } |
| 2095 | |
| 2096 | void modifyToClassMember ( Function * func, Structure * baseClass, bool isExplicit, bool isConstant ) { |
| 2097 | // first argument is this |
no test coverage detected