6 writes to rangeVariable
Microsoft.CodeAnalysis.CSharp (6)
Binder\Binder_Query.cs (4)
93
RangeVariableSymbol x = state.
rangeVariable
= state.AddRangeVariable(this, fromClause.Identifier, diagnostics);
108
x = state.
rangeVariable
= state.AddRangeVariable(this, continuation.Identifier, diagnostics);
705
state.
rangeVariable
= state.TransparentRangeVariable(this);
758
state.
rangeVariable
= state.TransparentRangeVariable(this);
Binder\Binder.IdentifierUsedAsValueFinder.cs (1)
535
state.
rangeVariable
= state.TransparentRangeVariable(enclosingBinder);
Binder\Binder.QueryTranslationState.cs (1)
131
rangeVariable
= null;
16 references to rangeVariable
Microsoft.CodeAnalysis.CSharp (16)
Binder\Binder_Query.cs (9)
181
return name != null && state.
rangeVariable
.Name == name.Identifier.ValueText;
229
var x = state.
rangeVariable
;
252
var x = state.
rangeVariable
;
366
var lambda = MakeQueryUnboundLambda(state.RangeVariableMap(), state.
rangeVariable
, where.Condition, diagnostics.AccumulatesDependencies);
406
var outerKeySelectorLambda = MakeQueryUnboundLambda(state.RangeVariableMap(), state.
rangeVariable
, join.LeftExpression, diagnostics.AccumulatesDependencies);
408
var x1 = state.
rangeVariable
;
567
var lambda = MakeQueryUnboundLambda(state.RangeVariableMap(), state.
rangeVariable
, ordering.Expression, diagnostics.AccumulatesDependencies);
585
var x1 = state.
rangeVariable
;
721
var x = state.
rangeVariable
;
Binder\Binder.IdentifierUsedAsValueFinder.cs (7)
383
var x = state.
rangeVariable
;
396
var x = state.
rangeVariable
;
445
return MakeQueryUnboundLambda(enclosingBinder, state.RangeVariableMap(), state.
rangeVariable
, where.Condition);
454
MakeQueryUnboundLambda(enclosingBinder, state.RangeVariableMap(), state.
rangeVariable
, join.LeftExpression))
495
if (!MakeQueryUnboundLambda(enclosingBinder, state.RangeVariableMap(), state.
rangeVariable
, ordering.Expression))
509
var x1 = state.
rangeVariable
;
531
var x = state.
rangeVariable
;