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