19 references to Statement
Microsoft.CodeAnalysis.CSharp.Features (10)
Structure\Providers\BlockSyntaxStructureProvider.cs (9)
141case SyntaxKind.TryStatement: return BlockTypes.Statement; 142case SyntaxKind.CatchClause: return BlockTypes.Statement; 143case SyntaxKind.FinallyClause: return BlockTypes.Statement; 145case SyntaxKind.UnsafeStatement: return BlockTypes.Statement; 146case SyntaxKind.FixedStatement: return BlockTypes.Statement; 147case SyntaxKind.LockStatement: return BlockTypes.Statement; 148case SyntaxKind.UsingStatement: return BlockTypes.Statement; 154case SyntaxKind.Block: return BlockTypes.Statement; 156case SyntaxKind.LocalFunctionStatement: return BlockTypes.Statement;
Structure\Providers\SwitchStatementStructureProvider.cs (1)
39type: BlockTypes.Statement));
Microsoft.CodeAnalysis.EditorFeatures (1)
Structure\StructureTag.cs (1)
114BlockTypes.Statement => PredefinedStructureTagTypes.Statement,
Microsoft.CodeAnalysis.ExternalAccess.FSharp (1)
Structure\FSharpBlockTypes.cs (1)
27public static string Statement => BlockTypes.Statement;
Microsoft.CodeAnalysis.ExternalAccess.OmniSharp (1)
Structure\OmniSharpBlockTypes.cs (1)
25public static string Statement => BlockTypes.Statement;
Microsoft.CodeAnalysis.Features (2)
Structure\BlockTypes.cs (2)
25public const string Statement = nameof(Statement); 50case Statement:
Microsoft.CodeAnalysis.VisualBasic.Features (4)
Structure\Providers\SyncLockBlockStructureProvider.vb (1)
21type:=BlockTypes.Statement, isCollapsible:=True))
Structure\Providers\TryBlockStructureProvider.vb (1)
21type:=BlockTypes.Statement, isCollapsible:=True))
Structure\Providers\UsingBlockStructureProvider.vb (1)
21type:=BlockTypes.Statement, isCollapsible:=True))
Structure\Providers\WithBlockStructureProvider.vb (1)
21type:=BlockTypes.Statement, isCollapsible:=True))