-
Hey, I'm new to typescript and Langium and I'm not able to bound the breakpoints I put in the code that will be injected. Typically, to debug a scope provider. The I may be wrong but I suspect this is due to the DI mechanism. How do classical Langium developers do to debug their code ? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hey @jdeantoni, the language server (which contains the code for the scope provider) is running in a separate process. While the normal |
Beta Was this translation helpful? Give feedback.
Hey @jdeantoni,
the language server (which contains the code for the scope provider) is running in a separate process. While the normal
Run Extension
debug config starts the debugger for the extension, you'll have to run theAttach to Language Server
debug configuration in addition to actually debug the language server.