12 references to Name
System.Core (12)
Microsoft\Scripting\Ast\DebugViewWriter.cs (3)
118Debug.Assert(String.IsNullOrEmpty(le.Name)); 1145if (String.IsNullOrEmpty(lambda.Name)) { 1148return GetDisplayName(lambda.Name);
Microsoft\Scripting\Ast\Expression.DebuggerProxy.cs (1)
231public String Name { get { return _node.Name; } }
Microsoft\Scripting\Ast\LambdaExpression.cs (1)
230return Expression.Lambda<TDelegate>(body, Name, TailCall, parameters);
Microsoft\Scripting\Compiler\CompilerScope.cs (1)
462return lambda.Name;
Microsoft\Scripting\Compiler\ExpressionQuoter.cs (1)
84return Expression.Lambda<T>(b, node.Name, node.TailCall, node.Parameters);
Microsoft\Scripting\Compiler\LambdaCompiler.cs (1)
93var method = new DynamicMethod(lambda.Name ?? "lambda_method", lambda.ReturnType, parameterTypes, true);
Microsoft\Scripting\Compiler\LambdaCompiler.Lambda.cs (2)
128string name = String.IsNullOrEmpty(lambda.Name) ? GetUniqueMethodName() : lambda.Name;
Microsoft\Scripting\Compiler\StackSpiller.cs (1)
124return new Expression<T>(newBody, lambda.Name, lambda.TailCall, lambda.Parameters);
Microsoft\Scripting\Compiler\VariableBinder.cs (1)
251return lambda.Name;