| 2533 | } |
| 2534 | |
| 2535 | BfCompiler* BfSystem::CreateCompiler(bool isResolveOnly) |
| 2536 | { |
| 2537 | auto compiler = new BfCompiler(this, isResolveOnly); |
| 2538 | mCompilers.push_back(compiler); |
| 2539 | if (mIsResolveOnly) |
| 2540 | BF_ASSERT(isResolveOnly); |
| 2541 | if (isResolveOnly) |
| 2542 | mIsResolveOnly = true; |
| 2543 | return compiler; |
| 2544 | } |
| 2545 | |
| 2546 | BfProject* BfSystem::GetProject(const StringImpl& projName) |
| 2547 | { |
no test coverage detected