File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
rascal-lsp/src/main/java/org/rascalmpl/vscode/lsp/parametric Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 3939import org .rascalmpl .uri .URIUtil ;
4040import org .rascalmpl .values .parsetrees .ITree ;
4141import org .rascalmpl .vscode .lsp .parametric .LanguageRegistry .LanguageParameter ;
42+ import org .rascalmpl .vscode .lsp .util .NamedThreadPool ;
4243import org .rascalmpl .vscode .lsp .util .locations .impl .TreeSearch ;
4344
4445import io .usethesource .vallang .IConstructor ;
@@ -67,8 +68,9 @@ public RascalInterface(IRascalMonitor monitor) {
6768 .setRemoteInterface (LanguageRegistry .class )
6869 .setInput (socket .getInputStream ())
6970 .setOutput (socket .getOutputStream ())
71+ .setExecutorService (NamedThreadPool .cachedDaemon ("rascal-interface" ))
7072 .create ();
71-
73+
7274 clientLauncher .startListening ();
7375 registry = clientLauncher .getRemoteProxy ();
7476 }
You can’t perform that action at this time.
0 commit comments