File tree 2 files changed +1
-4
lines changed
2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change 90
90
"enum" : [
91
91
" public" ,
92
92
" internal" ,
93
- " private" ,
94
93
" none"
95
94
],
96
95
"enumItemLabels" : [
97
96
" public" ,
98
97
" internal" ,
99
- " private" ,
100
98
" empty (internal)"
101
99
],
102
100
"markdownEnumDescriptions" : [
103
101
" [Access is not restricted.](https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/public)" ,
104
102
" [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)" ,
106
103
" Uses nothing which lets C# use the default [(internal)](https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/class) option."
107
104
]
108
105
},
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ export const DEST_PATH = 'snippets/snippets.json';
4
4
export const ISSUES_URL = 'https://github.com/kleber-swf/vscode-unity-code-snippets/issues' ;
5
5
6
6
export type IndentationStyle = 'kr' | 'allman' ;
7
- export type ClassAccessibilityLevel = 'public' | 'internal' | ' private' | 'none' ;
7
+ export type ClassAccessibilityLevel = 'public' | 'private' | 'none' ;
8
8
9
9
export type ReplaceType = 'PRIVATE' | 'CLASS_ACCESSIBILITY_LEVEL' | 'LINE_BREAK' | 'TAB' ;
10
10
export type Replaces = Record < ReplaceType , string > ;
You can’t perform that action at this time.
0 commit comments