4 references to StatementList
Microsoft.CodeAnalysis.CSharp (4)
Lowering\Instrumentation\CodeCoverageInstrumenter.cs (2)
447return statementFactory.StatementList(AddAnalysisPoint(whenClause, statementFactory), ifConditionGotoBody); 473return statementFactory.StatementList(AddAnalysisPoint(SyntaxForSpan(original), statementFactory), rewritten);
Lowering\Instrumentation\ModuleCancellationInstrumenter.cs (1)
98=> _factory.StatementList(_factory.ExpressionStatement(_factory.ThrowIfModuleCancellationRequested()), statement);
Lowering\SyntheticBoundNodeFactory.cs (1)
531=> (first == null) ? second : (second == null) ? first : StatementList(first, second);