15 references to KeepEndOfLine
Microsoft.CodeAnalysis.CSharp (6)
Syntax\SyntaxNodeRemover.cs (6)
299
else if ((_options & SyntaxRemoveOptions.
KeepEndOfLine
) != 0)
313
else if ((_options & SyntaxRemoveOptions.
KeepEndOfLine
) != 0)
333
else if ((_options & SyntaxRemoveOptions.
KeepEndOfLine
) != 0)
353
else if ((_options & SyntaxRemoveOptions.
KeepEndOfLine
) != 0)
371
else if ((_options & SyntaxRemoveOptions.
KeepEndOfLine
) != 0)
389
else if ((_options & SyntaxRemoveOptions.
KeepEndOfLine
) != 0)
Microsoft.CodeAnalysis.NetAnalyzers (1)
Microsoft.CodeQuality.Analyzers\ApiDesignGuidelines\EnumStorageShouldBeInt32.Fixer.cs (1)
68
editor.RemoveNode(targetNode, SyntaxRemoveOptions.KeepLeadingTrivia | SyntaxRemoveOptions.KeepTrailingTrivia | SyntaxRemoveOptions.KeepExteriorTrivia | SyntaxRemoveOptions.
KeepEndOfLine
);
Microsoft.CodeAnalysis.VisualBasic (6)
Syntax\SyntaxNodeRemover.vb (6)
209
ElseIf (Me._options And SyntaxRemoveOptions.
KeepEndOfLine
) <> 0 AndAlso HasEndOfLine(node.GetLeadingTrivia()) Then
219
ElseIf (Me._options And SyntaxRemoveOptions.
KeepEndOfLine
) <> 0 AndAlso HasEndOfLine(node.GetTrailingTrivia()) Then
233
ElseIf (Me._options And SyntaxRemoveOptions.
KeepEndOfLine
) <> 0 AndAlso
246
ElseIf (Me._options And SyntaxRemoveOptions.
KeepEndOfLine
) <> 0 AndAlso HasEndOfLine(node.GetTrailingTrivia()) Then
258
ElseIf (Me._options And SyntaxRemoveOptions.
KeepEndOfLine
) <> 0 AndAlso HasEndOfLine(node.GetLeadingTrivia()) Then
272
ElseIf (Me._options And SyntaxRemoveOptions.
KeepEndOfLine
) <> 0 AndAlso
Microsoft.CodeAnalysis.VisualBasic.Features (2)
CodeRefactorings\InlineTemporary\VisualBasicInlineTemporaryCodeRefactoringProvider.vb (2)
261
Return localDeclaration.RemoveNode(variableDeclarator, SyntaxRemoveOptions.
KeepEndOfLine
)
265
Return localDeclaration.RemoveNode(modifiedIdentifier, SyntaxRemoveOptions.
KeepEndOfLine
)