File tree Expand file tree Collapse file tree 1 file changed +2
-7
lines changed
src/PowerShellEditorServices.Protocol/Server Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -31,19 +31,14 @@ public class LanguageServer : LanguageServerBase
31
31
private OutputDebouncer outputDebouncer ;
32
32
private LanguageServerEditorOperations editorOperations ;
33
33
private LanguageServerSettings currentSettings = new LanguageServerSettings ( ) ;
34
+ private Dictionary < string , Dictionary < string , MarkerCorrection > > codeActionsPerFile =
35
+ new Dictionary < string , Dictionary < string , MarkerCorrection > > ( ) ;
34
36
35
- < << << << 2d 4012 eee01d844c3e2d46aa538aa348d63530b0
36
37
/// <param name="hostDetails">
37
38
/// Provides details about the host application.
38
39
/// </param>
39
40
public LanguageServer ( HostDetails hostDetails , ProfilePaths profilePaths )
40
41
: this ( hostDetails , profilePaths , new StdioServerChannel ( ) )
41
- == == == =
42
- private Dictionary < string , Dictionary < string , MarkerCorrection > > codeActionsPerFile =
43
- new Dictionary < string , Dictionary < string , MarkerCorrection > > ( ) ;
44
-
45
- public LanguageServer ( ) : this ( new StdioServerChannel ( ) )
46
- >>> >>> > DRAFT: Initial "code actions" support
47
42
{
48
43
}
49
44
You can’t perform that action at this time.
0 commit comments