| 10616 | } |
| 10617 | |
| 10618 | BfMethodInstance* CeMachine::GetMethodInstance(int64 methodHandle) |
| 10619 | { |
| 10620 | BfMethodInstance* methodInstance = (BfMethodInstance*)(intptr)methodHandle; |
| 10621 | if (!mMethodInstanceSet.Contains(methodInstance)) |
| 10622 | return NULL; |
| 10623 | return methodInstance; |
| 10624 | } |
| 10625 | |
| 10626 | BfFieldInstance* CeMachine::GetFieldInstance(int64 fieldHandle) |
| 10627 | { |
no test coverage detected