7 references to IsImplicitObjectCreation
Microsoft.CodeAnalysis.CSharp (7)
Binder\Binder_Operators.cs (3)
1360if (left.IsImplicitObjectCreation() || 1361right.IsImplicitObjectCreation()) 2684bool isOperandNullOrNew = operand.IsLiteralNull() || operand.IsImplicitObjectCreation();
Binder\Binder_Query.cs (1)
942else if (ultimateReceiver.IsImplicitObjectCreation())
BoundTree\BoundExpressionExtensions.cs (1)
80return node.IsLiteralDefault() || node.IsImplicitObjectCreation();
Symbols\Source\ParameterHelpers.cs (2)
743!IsValidDefaultValue(defaultExpression.IsImplicitObjectCreation() ? 795(defaultExpression.IsImplicitObjectCreation() ? convertedExpression.Type.StrippedType() : defaultExpression.Type), parameterSyntax.Identifier.ValueText);