8 references to BindExpression
Microsoft.CodeAnalysis.CSharp (8)
Binder\Binder_Deconstruct.cs (1)
791
var boundVariable =
BindExpression
(node, diagnostics, invoked: false, indexed: false);
Binder\Binder_Expressions.cs (5)
244
var result = this.
BindExpression
(node, diagnostics: diagnostics, invoked: false, indexed: false);
259
var valueOrType =
BindExpression
(node, diagnostics: diagnostics, invoked: false, indexed: false);
539
return
BindExpression
(node, diagnostics: diagnostics, invoked: false, indexed: false);
2456
return this.
BindExpression
(node, diagnostics, SyntaxFacts.IsInvoked(node), SyntaxFacts.IsIndexed(node));
9341
BoundExpression receiver =
BindExpression
(node.Expression, diagnostics: diagnostics, invoked: false, indexed: true);
Binder\Binder_Invocation.cs (1)
38
return
BindExpression
(node, diagnostics, invoked, indexed);
Binder\Binder_Patterns.cs (1)
536
var expression =
BindExpression
(patternExpression, diagnostics: diagnostics, invoked: false, indexed: false);