9 references to BindPossibleEmbeddedStatement
Microsoft.CodeAnalysis.CSharp (9)
Binder\Binder_Statements.cs (3)
208
BoundStatement boundBody =
BindPossibleEmbeddedStatement
(node.Statement, diagnostics);
2495
var consequence =
BindPossibleEmbeddedStatement
(node.Statement, diagnostics);
2496
BoundStatement alternative = (node.Else == null) ? null :
BindPossibleEmbeddedStatement
(node.Else.Statement, diagnostics);
Binder\ForEachLoopBinder.cs (1)
397
BoundStatement body = originalBinder.
BindPossibleEmbeddedStatement
(_syntax.Statement, diagnostics);
Binder\ForLoopBinder.cs (1)
126
var body = originalBinder.
BindPossibleEmbeddedStatement
(node.Statement, diagnostics);
Binder\LockBinder.cs (1)
58
BoundStatement stmt = originalBinder.
BindPossibleEmbeddedStatement
(_syntax.Statement, diagnostics);
Binder\UsingStatementBinder.cs (1)
171
BoundStatement boundBody = originalBinder.
BindPossibleEmbeddedStatement
(usingBinderOpt!._syntax.Statement, diagnostics);
Binder\WhileBinder.cs (2)
33
var body = originalBinder.
BindPossibleEmbeddedStatement
(node.Statement, diagnostics);
43
var body = originalBinder.
BindPossibleEmbeddedStatement
(node.Statement, diagnostics);