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