File tree 2 files changed +3
-3
lines changed
lib/vscode/src/vs/server/node
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ export abstract class Connection {
27
27
) {
28
28
this . logger = logger . named (
29
29
this . name ,
30
- field ( " token" , this . protocol . options . reconnectionToken ) ,
30
+ field ( ' token' , this . protocol . options . reconnectionToken ) ,
31
31
) ;
32
32
33
33
this . logger . debug ( 'Connecting...' ) ;
@@ -146,7 +146,7 @@ export class ExtensionHostConnection extends Connection {
146
146
147
147
private sendInitMessage ( buffer : VSBuffer , inflateBytes : Uint8Array | undefined ) : void {
148
148
if ( ! this . process ) {
149
- throw new Error ( " Tried to initialize VS Code before spawning" ) ;
149
+ throw new Error ( ' Tried to initialize VS Code before spawning' ) ;
150
150
}
151
151
152
152
this . logger . debug ( 'Sending socket' ) ;
Original file line number Diff line number Diff line change @@ -201,7 +201,7 @@ export class Vscode {
201
201
const offline = Array . from ( connections . values ( ) )
202
202
. filter ( ( connection ) => typeof connection . offline !== 'undefined' ) ;
203
203
for ( let i = 0 , max = offline . length - this . maxExtraOfflineConnections ; i < max ; ++ i ) {
204
- offline [ i ] . dispose ( " old" ) ;
204
+ offline [ i ] . dispose ( ' old' ) ;
205
205
}
206
206
}
207
207
You can’t perform that action at this time.
0 commit comments