1 write to Flags
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
6085this.Flags = flags;
9 references to Flags
Microsoft.CodeAnalysis.CSharp (9)
Binder\Binder_Invocation.cs (2)
433methodGroup.Flags & ~BoundMethodGroupFlags.HasImplicitReceiver, 458methodGroup.Flags,
BoundTree\BoundMethodGroup.cs (1)
76return (this.Flags & BoundMethodGroupFlags.SearchExtensions) != 0;
Generated\BoundNodes.xml.Generated.cs (5)
6102if (typeArgumentsOpt != this.TypeArgumentsOpt || name != this.Name || methods != this.Methods || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(lookupSymbolOpt, this.LookupSymbolOpt) || lookupError != this.LookupError || flags != this.Flags || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(functionType, this.FunctionType) || receiverOpt != this.ReceiverOpt || resultKind != this.ResultKind) 11870return node.Update(node.TypeArgumentsOpt, node.Name, methods, lookupSymbolOpt, node.LookupError, node.Flags, functionType, receiverOpt, node.ResultKind); 14080updatedNode = node.Update(node.TypeArgumentsOpt, node.Name, methods, lookupSymbolOpt, node.LookupError, node.Flags, functionType, receiverOpt, node.ResultKind); 14085updatedNode = node.Update(node.TypeArgumentsOpt, node.Name, methods, lookupSymbolOpt, node.LookupError, node.Flags, functionType, receiverOpt, node.ResultKind); 16543new TreeDumperNode("flags", node.Flags, null),
Lowering\LocalRewriter\LocalRewriter_Call.cs (1)
40hasImplicitReceiver = (methodGroup.Flags & BoundMethodGroupFlags.HasImplicitReceiver) != 0;