Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ CurrentLambdaName

string System.Linq.Expressions.Compiler.VariableBinder.CurrentLambdaName
getprivate

Definition at line 20 of file VariableBinder.cs.

21 {
22 get
23 {
24 foreach (CompilerScope scope in _scopes)
25 {
26 if (scope.Node is LambdaExpression lambdaExpression)
27 {
28 return lambdaExpression.Name;
29 }
30 }
32 }
33 }
readonly Stack< CompilerScope > _scopes

Referenced by System.Linq.Expressions.Compiler.VariableBinder.Reference().