Binder\Binder_Expressions.cs (25)
109/// Generates a new <see cref="BoundBadExpression"/> with no known type
111private BoundBadExpression BadExpression(SyntaxNode syntax)
117/// Generates a new <see cref="BoundBadExpression"/> with no known type, and the given bound child.
119private BoundBadExpression BadExpression(SyntaxNode syntax, BoundExpression childNode)
125/// Generates a new <see cref="BoundBadExpression"/> with no known type, and the given bound children.
127private BoundBadExpression BadExpression(SyntaxNode syntax, ImmutableArray<BoundExpression> childNodes)
133/// Generates a new <see cref="BoundBadExpression"/> with no known type, given lookup resultKind.
135protected BoundBadExpression BadExpression(SyntaxNode syntax, LookupResultKind lookupResultKind)
141/// Generates a new <see cref="BoundBadExpression"/> with no known type, given lookup resultKind and the given bound child.
143protected BoundBadExpression BadExpression(SyntaxNode syntax, LookupResultKind lookupResultKind, BoundExpression childNode)
149/// Generates a new <see cref="BoundBadExpression"/> with no known type, given lookupResultKind and given symbols for GetSemanticInfo API.
151private BoundBadExpression BadExpression(SyntaxNode syntax, LookupResultKind resultKind, ImmutableArray<Symbol> symbols)
161/// Generates a new <see cref="BoundBadExpression"/> with no known type, given lookupResultKind and given symbols for GetSemanticInfo API,
164private BoundBadExpression BadExpression(SyntaxNode syntax, LookupResultKind resultKind, ImmutableArray<Symbol> symbols, BoundExpression childNode)
174/// Generates a new <see cref="BoundBadExpression"/> with no known type, given lookupResultKind and given symbols for GetSemanticInfo API,
177private BoundBadExpression BadExpression(SyntaxNode syntax, LookupResultKind resultKind, ImmutableArray<Symbol> symbols, ImmutableArray<BoundExpression> childNodes, bool wasCompilerGenerated = false)
192/// Otherwise, a new <see cref="BoundBadExpression"/> wrapping <paramref name="expr"/> is returned.
197/// Returned expression need not be a <see cref="BoundBadExpression"/>, but is guaranteed to have HasErrors set to true.
214var badExpression = (BoundBadExpression)expr;
238/// did not meet the requirements, the return value will be a <see cref="BoundBadExpression"/> that
5187Debug.Assert(result is not BoundBadExpression { ChildBoundNodes: var children } || !children.Any((child, node) => child.Syntax == node, node));
5770var badRight = new BoundBadExpression(
7024var bad = (BoundBadExpression)classCreation;
Generated\BoundNodes.xml.Generated.cs (10)
999public BoundBadExpression Update(LookupResultKind resultKind, ImmutableArray<Symbol?> symbols, ImmutableArray<BoundExpression> childBoundNodes, TypeSymbol? type)
1003var result = new BoundBadExpression(this.Syntax, resultKind, symbols, childBoundNodes, type, this.HasErrors);
8906return VisitBadExpression((BoundBadExpression)node, arg);
9358public virtual R VisitBadExpression(BoundBadExpression node, A arg) => this.DefaultVisit(node, arg);
9594public virtual BoundNode? VisitBadExpression(BoundBadExpression node) => this.DefaultVisit(node);
9854public override BoundNode? VisitBadExpression(BoundBadExpression node)
10938public override BoundNode? VisitBadExpression(BoundBadExpression node)
12628public override BoundNode? VisitBadExpression(BoundBadExpression node)
12632BoundBadExpression updatedNode;
15287public override TreeDumperNode VisitBadExpression(BoundBadExpression node, object? arg) => new TreeDumperNode("badExpression", null, new TreeDumperNode[]