13 references to Name
Microsoft.CodeAnalysis.VisualBasic.Emit.UnitTests (2)
ExpressionTrees\Sources\ExprLambdaUtils.vb (2)
253
If node.
Name
IsNot Nothing Then
254
_s.AppendLine(indent + node.
Name
)
System.Linq.Expressions (11)
System\Linq\Expressions\Compiler\CompilerScope.cs (1)
504
return lambda.
Name
;
System\Linq\Expressions\Compiler\LambdaCompiler.cs (1)
74
var method = new DynamicMethod(lambda.
Name
?? ("lambda_method" + lambdaMethodIndex.ToString()), lambda.ReturnType, parameterTypes, true);
System\Linq\Expressions\Compiler\StackSpiller.cs (1)
122
return Expression<T>.Create(newBody, lambda.
Name
, lambda.TailCall, new ParameterList(lambda));
System\Linq\Expressions\Compiler\VariableBinder.cs (1)
276
return lambda.
Name
;
System\Linq\Expressions\DebugViewWriter.cs (3)
99
Debug.Assert(string.IsNullOrEmpty(le.
Name
));
1183
if (string.IsNullOrEmpty(lambda.
Name
))
1187
return GetDisplayName(lambda.
Name
);
System\Linq\Expressions\Expression.DebuggerProxy.cs (1)
230
public string? Name => _node.
Name
;
System\Linq\Expressions\Interpreter\LightCompiler.cs (1)
331
return new LightDelegateCreator(MakeInterpreter(node.
Name
), node);
System\Linq\Expressions\LambdaExpression.cs (2)
279
return Lambda<TDelegate>(body,
Name
, TailCall, parameters);
587
return Expression.Lambda<TDelegate>(body,
Name
, TailCall, parameters ?? _parameters);