1 write to LengthAccess
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
8390this.LengthAccess = lengthAccess;
13 references to LengthAccess
Microsoft.CodeAnalysis.CSharp (13)
Binder\DecisionDagBuilder_CheckOrReachability.cs (2)
1315newPattern.Syntax, newSubpatterns, hasSlice, listPattern.LengthAccess, listPattern.IndexerAccess, 1346newPattern.Syntax, newSubpatterns, hasSlice: true, listPattern.LengthAccess, listPattern.IndexerAccess,
Binder\DecisionDagBuilder_ListPatterns.cs (3)
22list.LengthAccess is not null); 43Debug.Assert(list.LengthAccess is not null); 44var lengthProperty = Binder.GetPropertySymbol(list.LengthAccess, out _, out _);
Binder\UnionMatchingRewriter.cs (1)
125BoundExpression? lengthAccess = node.LengthAccess;
BoundTree\BoundListPattern.cs (2)
16return Update(subpatterns, this.HasSlice, this.LengthAccess, this.IndexerAccess, this.ReceiverPlaceholder, this.ArgumentPlaceholder, this.Variable, this.VariableAccess, this.IsUnionMatching, this.InputType, this.NarrowedType); 22Debug.Assert(LengthAccess is null or BoundPropertyAccess or BoundBadExpression);
Generated\BoundNodes.xml.Generated.cs (4)
8412if (subpatterns != this.Subpatterns || hasSlice != this.HasSlice || lengthAccess != this.LengthAccess || indexerAccess != this.IndexerAccess || receiverPlaceholder != this.ReceiverPlaceholder || argumentPlaceholder != this.ArgumentPlaceholder || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(variable, this.Variable) || variableAccess != this.VariableAccess || isUnionMatching != this.IsUnionMatching || !TypeSymbol.Equals(inputType, this.InputType, TypeCompareKind.ConsiderEverything) || !TypeSymbol.Equals(narrowedType, this.NarrowedType, TypeCompareKind.ConsiderEverything)) 12565BoundExpression? lengthAccess = node.LengthAccess; 15260BoundExpression? lengthAccess = node.LengthAccess; 17509new TreeDumperNode("lengthAccess", null, new TreeDumperNode[] { Visit(node.LengthAccess, null) }),
Operations\CSharpOperationFactory.cs (1)
2687lengthSymbol: Binder.GetPropertySymbol(boundNode.LengthAccess, out _, out _).GetPublicSymbol(),