| 79 | //----------------------------------------------------------------------------- |
| 80 | |
| 81 | CodeGeneratorVariant::CodeGenerators::CodeGenerators(OutputFormatHelper& _outputFormatHelper, |
| 82 | CodeGenerator::LambdaStackType& lambdaStack, |
| 83 | CodeGenerator::ProcessingPrimaryTemplate processingPrimaryTemplate) |
| 84 | { |
| 85 | if(GetInsightsOptions().UseShow2C) { |
| 86 | new(&cfcg) CfrontCodeGenerator{ |
| 87 | _outputFormatHelper, lambdaStack, CodeGenerator::LambdaInInitCapture::No, processingPrimaryTemplate}; |
| 88 | } else { |
| 89 | new(&cg) CodeGenerator{ |
| 90 | _outputFormatHelper, lambdaStack, CodeGenerator::LambdaInInitCapture::No, processingPrimaryTemplate}; |
| 91 | } |
| 92 | } |
| 93 | //----------------------------------------------------------------------------- |
| 94 | |
| 95 | CodeGeneratorVariant::CodeGenerators::CodeGenerators(OutputFormatHelper& _outputFormatHelper, |
nothing calls this directly
no outgoing calls
no test coverage detected