Binder\Binder_Expressions.cs (8)
901return new BoundTypeExpression(node, null, CreateErrorType("ref"));
908return new BoundTypeExpression(node, null, CreateErrorType("scoped"));
1763expression = new BoundTypeExpression(node, null, type);
2176return new BoundTypeExpression(node, null, (TypeSymbol)symbol, hasErrors: isError);
2204TypeSymbol typeSymbol => new BoundTypeExpression(node, alias, typeSymbol, hasErrors: isError),
2551return new BoundTypeExpression(node, alias, type);
7956return new BoundTypeExpression(node, null, type);
7966return new BoundTypeExpression(node, null,
Lowering\LocalRewriter\LocalRewriter_BinaryOperator.cs (3)
87var falseOperatorCall = BoundCall.Synthesized(syntax, receiverOpt: node.ConstrainedToTypeOpt is null ? null : new BoundTypeExpression(syntax, aliasOpt: null, node.ConstrainedToTypeOpt),
780receiverOpt: constrainedToTypeOpt is null ? null : new BoundTypeExpression(syntax, aliasOpt: null, constrainedToTypeOpt),
807receiverOpt: constrainedToTypeOpt is null ? null : new BoundTypeExpression(syntax, aliasOpt: null, constrainedToTypeOpt),