| 239 | //----------------------------------------------------------------------------- |
| 240 | |
| 241 | CodeGenerator::LambdaScopeHandler::LambdaScopeHandler(LambdaStackType& stack, |
| 242 | OutputFormatHelper& outputFormatHelper, |
| 243 | const LambdaCallerType lambdaCallerType) |
| 244 | : mStack{stack} |
| 245 | , mHelper{lambdaCallerType, GetBuffer(outputFormatHelper)} |
| 246 | { |
| 247 | mStack.push(mHelper); |
| 248 | } |
| 249 | //----------------------------------------------------------------------------- |
| 250 | |
| 251 | CodeGenerator::LambdaScopeHandler::~LambdaScopeHandler() |