7 references to BindExpression
Microsoft.CodeAnalysis.CSharp (7)
Binder\Binder_Deconstruct.cs (1)
790
var boundVariable =
BindExpression
(node, diagnostics, invoked: false, indexed: false);
Binder\Binder_Expressions.cs (4)
238
var result = this.
BindExpression
(node, diagnostics: diagnostics, invoked: false, indexed: false);
253
var valueOrType =
BindExpression
(node, diagnostics: diagnostics, invoked: false, indexed: false);
531
return
BindExpression
(node, diagnostics: diagnostics, invoked: false, indexed: false);
2383
return this.
BindExpression
(node, diagnostics, SyntaxFacts.IsInvoked(node), SyntaxFacts.IsIndexed(node));
Binder\Binder_Invocation.cs (1)
37
return
BindExpression
(node, diagnostics, invoked, indexed);
Binder\Binder_Patterns.cs (1)
535
var expression =
BindExpression
(patternExpression, diagnostics: diagnostics, invoked: false, indexed: false);