示例#1
0
 internal StackEntry Initialize(FunctionLikeExpression lambda, ModuleLiteral closureEnv, ApplyExpression ambientCall, AbsolutePath path, LineInfo location, DebugInfo debugInfo)
 {
     Lambda             = lambda;
     Env                = closureEnv;
     m_ambientCall      = ambientCall;
     Path               = path;
     InvocationLocation = location;
     DebugInfo          = debugInfo;
     return(this);
 }
示例#2
0
 /// <nodoc />
 internal StackEntry Initialize(Closure closure, ApplyExpression ambientCall, AbsolutePath path, LineInfo location, DebugInfo debugInfo)
 => Initialize(closure?.Function, closure?.Env, ambientCall, path, location, debugInfo);