mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-18 16:34:36 -05:00
Add comments to kinds
This commit is contained in:
@@ -824,9 +824,16 @@ namespace ts {
|
||||
}
|
||||
|
||||
export const enum OutliningSpanKind {
|
||||
/** Single or multi-line comments */
|
||||
Comment = "comment",
|
||||
|
||||
/** Sections marked by '// #region' and '// #endregion' comments */
|
||||
Region = "region",
|
||||
|
||||
/** Declarations and expressions */
|
||||
Code = "code",
|
||||
|
||||
/** Contiguous blocks of import declarations */
|
||||
Imports = "imports"
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user