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