IronPython.Compiler.Ast.FunctionDefinition.EnsureFunctionLambda C# (CSharp) Метод

EnsureFunctionLambda() приватный Метод

Creates the LambdaExpression which is the actual function body.
private EnsureFunctionLambda ( ) : Microsoft.Scripting.Ast.LightLambdaExpression
Результат Microsoft.Scripting.Ast.LightLambdaExpression
        private LightLambdaExpression EnsureFunctionLambda() {
            if (_dlrBody == null) {
                PerfTrack.NoteEvent(PerfTrack.Categories.Compiler, "Creating FunctionBody");
                _dlrBody = CreateFunctionLambda();
            }

            return _dlrBody;
        }