1 write to DefinedSymbol
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
7677
this.
DefinedSymbol
= definedSymbol;
14 references to DefinedSymbol
Microsoft.CodeAnalysis.CSharp (14)
Binder\Binder_Invocation.cs (1)
1925
return (value == replaced) ? q : q.Update(replaced, q.
DefinedSymbol
, q.Operation, q.Cast, q.Binder, q.UnoptimizedForm, q.Type);
Binder\Binder_Query.cs (1)
1011
query.
DefinedSymbol
,
Compilation\CSharpSemanticModel.cs (2)
3631
if ((object)query.
DefinedSymbol
!= null) builder.Add(query.
DefinedSymbol
);
Compilation\MemberSemanticModel.cs (3)
901
return bound == null ? null : bound.
DefinedSymbol
.GetPublicSymbol();
907
return bound == null ? null : bound.
DefinedSymbol
.GetPublicSymbol();
913
return bound == null ? null : bound.
DefinedSymbol
.GetPublicSymbol();
FlowAnalysis\ReadWriteWalker.cs (1)
247
var symbol = ((BoundQueryClause)node).
DefinedSymbol
;
FlowAnalysis\VariablesDeclaredWalker.cs (2)
164
if ((object)node.
DefinedSymbol
!= null)
166
_variablesDeclared.Add(node.
DefinedSymbol
);
Generated\BoundNodes.xml.Generated.cs (4)
7697
if (value != this.Value || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(definedSymbol, this.
DefinedSymbol
) || operation != this.Operation || cast != this.Cast || binder != this.Binder || unoptimizedForm != this.UnoptimizedForm || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything))
12157
RangeVariableSymbol? definedSymbol = this.VisitRangeVariableSymbol(node.
DefinedSymbol
);
14730
RangeVariableSymbol? definedSymbol = GetUpdatedSymbol(node, node.
DefinedSymbol
);
16977
new TreeDumperNode("definedSymbol", node.
DefinedSymbol
, null),