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