File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,6 +2,6 @@ Extension { #name : 'StdioStream' }
22
33{ #category : ' *PharoLanguageProtocol' }
44StdioStream >> plpNext: numberOfData [
5- self waitForData.
6- ^ self next: numberOfData
5+
6+ ^ ( self next: numberOfData) asString
77]
Original file line number Diff line number Diff line change @@ -81,13 +81,14 @@ PLSAbstractServer >> codeLensTextDocument: textDocument [
8181 ^ (self context textItem: (textDocument at: #uri )) codeLens
8282]
8383
84- { #category : ' pls - config ' }
84+ { #category : ' plp - debug ' }
8585PLSAbstractServer >> configDebugMode: debugMode [
8686
8787 < jrpc: #' pls:updateDebugMode' >
8888 self debugMode: debugMode.
8989 self answerLoopPriority: Processor lowestPriority.
90- process priority: self answerLoopPriority.
90+ process ifNotNil: [ :aProcess |
91+ aProcess priority: self answerLoopPriority ].
9192 ^ debugMode
9293]
9394
You can’t perform that action at this time.
0 commit comments