1 write to DefinedSymbol
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
7367this.DefinedSymbol = definedSymbol;
14 references to DefinedSymbol
Microsoft.CodeAnalysis.CSharp (14)
Binder\Binder_Invocation.cs (1)
1546return (value == replaced) ? q : q.Update(replaced, q.DefinedSymbol, q.Operation, q.Cast, q.Binder, q.UnoptimizedForm, q.Type);
Binder\Binder_Query.cs (1)
1026query.DefinedSymbol,
Compilation\CSharpSemanticModel.cs (2)
3612if ((object)query.DefinedSymbol != null) builder.Add(query.DefinedSymbol);
Compilation\MemberSemanticModel.cs (3)
890return bound == null ? null : bound.DefinedSymbol.GetPublicSymbol(); 896return bound == null ? null : bound.DefinedSymbol.GetPublicSymbol(); 902return bound == null ? null : bound.DefinedSymbol.GetPublicSymbol();
FlowAnalysis\ReadWriteWalker.cs (1)
225var symbol = ((BoundQueryClause)node).DefinedSymbol;
FlowAnalysis\VariablesDeclaredWalker.cs (2)
163if ((object)node.DefinedSymbol != null) 165_variablesDeclared.Add(node.DefinedSymbol);
Generated\BoundNodes.xml.Generated.cs (4)
7387if (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)) 11568return node.Update(value, node.DefinedSymbol, operation, cast, node.Binder, unoptimizedForm, type); 14041RangeVariableSymbol? definedSymbol = GetUpdatedSymbol(node, node.DefinedSymbol); 16204new TreeDumperNode("definedSymbol", node.DefinedSymbol, null),