csharpdeeb25a2 | 1 | namespace CascadeIDE.Models; |
| 2 | |
| 3 | /// <summary>Уровень карты в PFD (<c>[code_navigation_map].depth</c>).</summary> |
| 4 | public static class CodeNavigationMapLevelKind |
| 5 | { |
| 6 | public const string File = "file"; |
| 7 | public const string ControlFlow = "controlFlow"; |
| 8 | |
| 9 | public static string Normalize(string? value) => CodeNavigationMapSettings.NormalizeDepth(value); |
| 10 | } |
| 11 | |
View only · write via MCP/CIDE