1 write to DefinedSymbol
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
7685
this.
DefinedSymbol
= definedSymbol;
14 references to DefinedSymbol
Microsoft.CodeAnalysis.CSharp (14)
Binder\Binder_Invocation.cs (1)
1868
return (value == replaced) ? q : q.Update(replaced, q.
DefinedSymbol
, q.Operation, q.Cast, q.Binder, q.UnoptimizedForm, q.Type);
Binder\Binder_Query.cs (1)
1027
query.
DefinedSymbol
,
Compilation\CSharpSemanticModel.cs (2)
3619
if ((object)query.
DefinedSymbol
!= null) builder.Add(query.
DefinedSymbol
);
Compilation\MemberSemanticModel.cs (3)
900
return bound == null ? null : bound.
DefinedSymbol
.GetPublicSymbol();
906
return bound == null ? null : bound.
DefinedSymbol
.GetPublicSymbol();
912
return bound == null ? null : bound.
DefinedSymbol
.GetPublicSymbol();
FlowAnalysis\ReadWriteWalker.cs (1)
242
var symbol = ((BoundQueryClause)node).
DefinedSymbol
;
FlowAnalysis\VariablesDeclaredWalker.cs (2)
163
if ((object)node.
DefinedSymbol
!= null)
165
_variablesDeclared.Add(node.
DefinedSymbol
);
Generated\BoundNodes.xml.Generated.cs (4)
7705
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))
12002
return node.Update(value, node.
DefinedSymbol
, operation, cast, node.Binder, unoptimizedForm, type);
14578
RangeVariableSymbol? definedSymbol = GetUpdatedSymbol(node, node.
DefinedSymbol
);
16824
new TreeDumperNode("definedSymbol", node.
DefinedSymbol
, null),