4 overrides of Constructor
Microsoft.CodeAnalysis.CSharp (4)
BoundTree\BoundDynamicObjectCreationExpression.cs (1)
12public override MethodSymbol? Constructor => null;
BoundTree\BoundNewT.cs (1)
12public override MethodSymbol? Constructor => null;
BoundTree\BoundNoPiaObjectCreationExpression.cs (1)
12public override MethodSymbol? Constructor => null;
Generated\BoundNodes.xml.Generated.cs (1)
6437public override MethodSymbol Constructor { get; }
9 references to Constructor
Microsoft.CodeAnalysis.CSharp (9)
Binder\Binder.ValueChecks.cs (3)
172Debug.Assert(objectCreation.Constructor is not null); 175MethodInfo = MethodInfo.Create(objectCreation.Constructor), 178Parameters = objectCreation.Constructor.Parameters,
Binder\RefSafetyAnalysis.cs (5)
980if (node.Constructor is null) 989VisitArgumentsAndGetArgumentPlaceholders(receiverOpt: null, methodInvocationInfo.ArgsOpt, isExtensionBlockMember: node.Constructor.IsExtensionBlockMember()); 999node.Constructor, 1011Debug.Assert(node.Constructor is not null); 1049Error(_diagnostics, ErrorCode.ERR_CallArgMixing, argument.Syntax, node.Constructor, parameter.Name);
FlowAnalysis\NullableWalker.cs (1)
4384var constructor = node.Constructor;