1 write to LengthAccess
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
8208
this.
LengthAccess
= lengthAccess;
12 references to LengthAccess
Microsoft.CodeAnalysis.CSharp (12)
Binder\DecisionDagBuilder_CheckOrReachability.cs (2)
1306
newPattern.Syntax, newSubpatterns, hasSlice, listPattern.
LengthAccess
, listPattern.IndexerAccess,
1337
newPattern.Syntax, newSubpatterns, hasSlice: true, listPattern.
LengthAccess
, listPattern.IndexerAccess,
Binder\DecisionDagBuilder_ListPatterns.cs (3)
20
list.
LengthAccess
is not null);
39
Debug.Assert(list.
LengthAccess
is not null);
40
var lengthProperty = Binder.GetPropertySymbol(list.
LengthAccess
, out _, out _);
BoundTree\BoundListPattern.cs (2)
15
return Update(subpatterns, this.HasSlice, this.
LengthAccess
, this.IndexerAccess, this.ReceiverPlaceholder, this.ArgumentPlaceholder, this.Variable, this.VariableAccess, this.InputType, this.NarrowedType);
20
Debug.Assert(
LengthAccess
is null or BoundPropertyAccess or BoundBadExpression);
Generated\BoundNodes.xml.Generated.cs (4)
8230
if (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 || !TypeSymbol.Equals(inputType, this.InputType, TypeCompareKind.ConsiderEverything) || !TypeSymbol.Equals(narrowedType, this.NarrowedType, TypeCompareKind.ConsiderEverything))
12275
BoundExpression? lengthAccess = node.
LengthAccess
;
14936
BoundExpression? lengthAccess = node.
LengthAccess
;
17127
new TreeDumperNode("lengthAccess", null, new TreeDumperNode[] { Visit(node.
LengthAccess
, null) }),
Operations\CSharpOperationFactory.cs (1)
2612
lengthSymbol: Binder.GetPropertySymbol(boundNode.
LengthAccess
, out _, out _).GetPublicSymbol(),