| 605 | } |
| 606 | |
| 607 | bool BfCompiler::IsModuleAccessible(BfModule* module, BfProject* curProject) |
| 608 | { |
| 609 | for (auto checkType : module->mOwnedTypeInstances) |
| 610 | { |
| 611 | if (!IsTypeAccessible(checkType, curProject)) |
| 612 | return false; |
| 613 | } |
| 614 | |
| 615 | return curProject->ContainsReference(module->mProject); |
| 616 | } |
| 617 | |
| 618 | void BfCompiler::FixVDataHash(BfModule* bfModule) |
| 619 | { |
no test coverage detected