7 references to BoundDefaultExpression
Microsoft.CodeAnalysis.CSharp (6)
Binder\Binder_Conversions.cs (1)
252source = new BoundDefaultExpression(source.Syntax, targetType: null, constantValue, type: destination)
Binder\Binder_Expressions.cs (2)
353result = new BoundDefaultExpression( 1449return new BoundDefaultExpression(node, typeExpression, constantValueOpt: type.GetDefaultValue(), type);
Binder\Binder_Operators.cs (1)
3721operand = new BoundDefaultExpression(operand.Syntax, targetType: null, constantValueOpt: ConstantValue.Null,
BoundTree\Constructors.cs (1)
623: this(syntax, targetType: null, type.GetDefaultValue(), type, hasErrors)
Generated\BoundNodes.xml.Generated.cs (1)
2726var result = new BoundDefaultExpression(this.Syntax, targetType, constantValueOpt, type, this.HasErrors);
Microsoft.CodeAnalysis.CSharp.ExpressionEvaluator.ExpressionCompiler (1)
Rewriters\LocalDeclarationRewriter.cs (1)
126return new BoundDefaultExpression(syntax, targetType: null, constantValueOpt: null, guidConstructor.ContainingType);