File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed
Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change 9090 "enum" : [
9191 " public" ,
9292 " internal" ,
93- " private" ,
9493 " none"
9594 ],
9695 "enumItemLabels" : [
9796 " public" ,
9897 " internal" ,
99- " private" ,
10098 " empty (internal)"
10199 ],
102100 "markdownEnumDescriptions" : [
103101 " [Access is not restricted.](https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/public)" ,
104102 " [Access is limited to the current assembly.](https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/internal)" ,
105- " [Access is limited to the containing type.](https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/private)" ,
106103 " Uses nothing which lets C# use the default [(internal)](https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/class) option."
107104 ]
108105 },
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ export const DEST_PATH = 'snippets/snippets.json';
44export const ISSUES_URL = 'https://github.com/kleber-swf/vscode-unity-code-snippets/issues' ;
55
66export type IndentationStyle = 'kr' | 'allman' ;
7- export type ClassAccessibilityLevel = 'public' | 'internal' | ' private' | 'none' ;
7+ export type ClassAccessibilityLevel = 'public' | 'private' | 'none' ;
88
99export type ReplaceType = 'PRIVATE' | 'CLASS_ACCESSIBILITY_LEVEL' | 'LINE_BREAK' | 'TAB' ;
1010export type Replaces = Record < ReplaceType , string > ;
You can’t perform that action at this time.
0 commit comments