1 write to Property
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
5479this.Property = property;
12 references to Property
Microsoft.CodeAnalysis.CSharp (12)
Binder\DecisionDagBuilder.cs (1)
1741return $"t{tempIdentifier(e)}={e.Kind}({tempName(e.Input)}.{e.Property.Name})";
Binder\PatternExplainer.cs (3)
403var lengthTemp = new BoundDagTemp(lengthOrCount.Syntax, lengthOrCount.Property.Type, lengthOrCount); 573var subInput = new BoundDagTemp(e.Syntax, e.Property.Type, e); 575properties.Add(e.Property, subPattern);
BoundTree\BoundDagEvaluation.cs (1)
38BoundDagPropertyEvaluation e => e.Property,
BoundTree\BoundDagTest.cs (1)
57return $"{e.GetOutputTempDebuggerDisplay()} = {e.Input.GetDebuggerDisplay()}.{e.Property.Name}";
FlowAnalysis\NullableWalker_Patterns.cs (1)
534var property = (PropertySymbol)AsMemberOfType(inputType, e.Property);
Generated\BoundNodes.xml.Generated.cs (4)
5491if (!Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(property, this.Property) || isLengthOrCount != this.IsLengthOrCount || input != this.Input) 11621return node.Update(node.Property, node.IsLengthOrCount, input); 13690PropertySymbol property = GetUpdatedSymbol(node, node.Property); 16205new TreeDumperNode("property", node.Property, null),
Lowering\LocalRewriter\LocalRewriter.PatternLocalRewriter.cs (1)
152PropertySymbol property = p.Property;