| 1208 | } |
| 1209 | |
| 1210 | BfMethodState* GetRootMethodState() |
| 1211 | { |
| 1212 | auto checkMethodState = this; |
| 1213 | while (checkMethodState->mPrevMethodState != NULL) |
| 1214 | checkMethodState = checkMethodState->mPrevMethodState; |
| 1215 | return checkMethodState; |
| 1216 | } |
| 1217 | |
| 1218 | BfMethodState* GetNonCaptureState() |
| 1219 | { |
no outgoing calls
no test coverage detected