| 10632 | } |
| 10633 | |
| 10634 | CeFunction* CeMachine::QueueMethod(BfMethodInstance* methodInstance, BfIRValue func) |
| 10635 | { |
| 10636 | if (mPreparingFunction != NULL) |
| 10637 | { |
| 10638 | auto curOwner = mPreparingFunction->mMethodInstance->GetOwner(); |
| 10639 | curOwner->mModule->AddDependency(methodInstance->GetOwner(), curOwner, BfDependencyMap::DependencyFlag_ConstEval); |
| 10640 | } |
| 10641 | |
| 10642 | bool added = false; |
| 10643 | return GetFunction(methodInstance, func, added); |
| 10644 | } |
| 10645 | |
| 10646 | void CeMachine::QueueMethod(BfModuleMethodInstance moduleMethodInstance) |
| 10647 | { |
no test coverage detected