1 write to Parameter
System.Linq.Expressions (1)
System\Linq\Expressions\Interpreter\LocalVariables.cs (1)
52Parameter = parameter;
8 references to Parameter
System.Linq.Expressions (8)
System\Linq\Expressions\Interpreter\LightCompiler.cs (1)
1614Expression.Equal(temp.Parameter, val, false, node.Comparison),
System\Linq\Expressions\Interpreter\LocalVariables.cs (7)
61public bool Equals(LocalDefinition other) => other.Index == Index && other.Parameter == Parameter; 63public override int GetHashCode() => Parameter is null ? 0 : Parameter.GetHashCode() ^ Index.GetHashCode(); 96VariableScope scope = _variables[definition.Parameter]; 100_variables[definition.Parameter] = scope.Parent; 104_variables.Remove(definition.Parameter);