13 references to Condition
Microsoft.CodeAnalysis.CSharp (8)
_generated\0\Syntax.xml.Main.Generated.cs (1)
1750=> node.Update(VisitToken(node.WhereKeyword), (ExpressionSyntax?)Visit(node.Condition) ?? throw new ArgumentNullException("condition"));
_generated\2\Syntax.xml.Syntax.Generated.cs (2)
4730if (whereKeyword != this.WhereKeyword || condition != this.Condition) 4740public WhereClauseSyntax WithWhereKeyword(SyntaxToken whereKeyword) => Update(whereKeyword, this.Condition);
Binder\Binder.IdentifierUsedAsValueFinder.cs (1)
438return MakeQueryUnboundLambda(enclosingBinder, state.RangeVariableMap(), state.rangeVariable, where.Condition);
Binder\Binder_Query.cs (1)
366var lambda = MakeQueryUnboundLambda(state.RangeVariableMap(), state.rangeVariable, where.Condition, diagnostics.AccumulatesDependencies);
Syntax\LambdaUtilities.cs (3)
91return ((WhereClauseSyntax)newLambda).Condition; 179return whereClause.Condition == node; 319lambdaBody1 = ((WhereClauseSyntax)node).Condition;
Microsoft.CodeAnalysis.CSharp.Features (5)
ConvertLinq\CSharpConvertLinqQueryToForEachProvider.cs (1)
119return Block(IfStatement(((WhereClauseSyntax)node).Condition.WithAdditionalAnnotations(Simplifier.Annotation).WithoutTrivia(), statement));
EditAndContinue\BreakpointSpans.cs (1)
403return TryCreateSpanForNode(whereClause.Condition, position);
src\roslyn\src\Compilers\CSharp\Portable\Syntax\LambdaUtilities.cs (3)
91return ((WhereClauseSyntax)newLambda).Condition; 179return whereClause.Condition == node; 319lambdaBody1 = ((WhereClauseSyntax)node).Condition;