1 implementation of IsStatement
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpSyntaxFacts.cs (1)
233
public bool
IsStatement
([NotNullWhen(true)] SyntaxNode? node)
4 references to IsStatement
Microsoft.CodeAnalysis.CSharp.EditorFeatures (1)
CompleteStatement\CompleteStatementCommandHandler.cs (1)
260
else if (syntaxFacts.
IsStatement
(currentNode)
Microsoft.CodeAnalysis.Features (3)
EmbeddedLanguages\EmbeddedLanguageDetector.cs (3)
109
if (syntaxFacts.
IsStatement
(node))
238
var statement = container.FirstAncestorOrSelf<SyntaxNode>(syntaxFacts.
IsStatement
);
307
var statement = container.FirstAncestorOrSelf<SyntaxNode>(syntaxFacts.
IsStatement
);