6 references to IsEmpty
Microsoft.CodeAnalysis.CSharp.Features (2)
ConvertToRawString\ConvertRegularStringToRawStringCodeRefactoringProvider.cs (2)
60
if (characters.
IsEmpty
())
314
if (commonLeadingWhitespace.
IsEmpty
())
Microsoft.CodeAnalysis.Features (2)
EmbeddedLanguages\RegularExpressions\RegexParser.CaptureInfoAnalyzer.cs (1)
47
_captureNumberToSpan.Add(0, text.
IsEmpty
() ? default : GetSpan(text));
StackTraceExplorer\StackTraceAnalyzer.cs (1)
53
if (trimmedLine.
IsEmpty
())
Microsoft.CodeAnalysis.Workspaces (2)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\EmbeddedLanguages\Common\EmbeddedSyntaxToken.cs (1)
48
public bool IsMissing => VirtualChars.
IsEmpty
();
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\EmbeddedLanguages\VirtualChars\VirtualCharSequence.cs (1)
206
public static bool IsDefaultOrEmpty(this VirtualCharSequence sequence) => sequence.IsDefault || sequence.
IsEmpty
();