1 override of BindStatement
Microsoft.CodeAnalysis.CSharp (1)
20 references to BindStatement
Microsoft.CodeAnalysis.CSharp (15)
Binder\Binder_Statements.cs (9)
337return binder.WrapWithVariablesIfAny(node, binder.BindStatement(node, diagnostics));
346return binder.WrapWithVariablesAndLocalFunctionsIfAny(node, binder.BindStatement(node, diagnostics));
352return binder.WrapWithVariablesIfAny(switchStatement.Expression, binder.BindStatement(node, diagnostics));
386return BindStatement(node, diagnostics);
503var body = BindStatement(node.Statement, diagnostics);
1876var boundStatement = BindStatement(syntaxStatements[i], diagnostics);
3566var boundStatement = BindStatement(topLevelStatement.Statement, diagnostics);
3648constructor.Body == null ? null : (BoundBlock)bodyBinder.BindStatement(constructor.Body, diagnostics),
3933blockBody == null ? null : (BoundBlock)BindStatement(blockBody, diagnostics),
Microsoft.CodeAnalysis.CSharp.Emit2.UnitTests (4)
Microsoft.CodeAnalysis.CSharp.ExpressionEvaluator.ExpressionCompiler (1)