MCPcopy Create free account
hub / github.com/beefytech/Beef / CreateCompiler

Method CreateCompiler

IDEHelper/Compiler/BfSystem.cpp:2535–2544  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2533}
2534
2535BfCompiler* 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
2546BfProject* BfSystem::GetProject(const StringImpl& projName)
2547{

Callers 1

BfSystem_CreateCompilerFunction · 0.80

Calls 1

push_backMethod · 0.45

Tested by

no test coverage detected