7 references to IsImplicitObjectCreation
Microsoft.CodeAnalysis.CSharp (7)
Binder\Binder_Operators.cs (3)
1391if (left.IsImplicitObjectCreation() || 1392right.IsImplicitObjectCreation()) 2727bool isOperandNullOrNew = operand.IsLiteralNull() || operand.IsImplicitObjectCreation();
Binder\Binder_Query.cs (1)
943else if (ultimateReceiver.IsImplicitObjectCreation())
BoundTree\BoundExpressionExtensions.cs (1)
98return node.IsLiteralDefault() || node.IsImplicitObjectCreation();
Symbols\Source\ParameterHelpers.cs (2)
770!IsValidDefaultValue(defaultExpression.IsImplicitObjectCreation() ? 822(defaultExpression.IsImplicitObjectCreation() ? convertedExpression.Type.StrippedType() : defaultExpression.Type), parameterSyntax.Identifier.ValueText);