Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

question: does inlay expr text rendering support any/all debug adapters? #13

Closed
phrohdoh opened this issue Aug 30, 2020 · 3 comments
Closed

Comments

@phrohdoh
Copy link

The readme states the following:

Shows the text that was written to stdout next to the statement.

But I am not seeing this, only seeing it written to the debug console.

Is there anything particular I might need to do for non-JS/TS?

@hediet
Copy link
Owner

hediet commented Aug 30, 2020

Theoretically supports every debugger and language out there (there is nothing in the implementation specific to JavaScript).

It depends on the debug adapter. If it does not work out of the box, I guess in your case the lldb debug adapter does not seem to report the source of log outputs.

@hediet
Copy link
Owner

hediet commented Aug 30, 2020

You could install this extension and have a look at the DAP log output and see whether there are some interesting events that could help. But I doubt it, there is not much to configure.

Also, I guess, this feature can only really be supported by debug adapters that are specific to a language, since they need to trace back the stdout data to the method invocation.

@phrohdoh
Copy link
Author

this feature can only really be supported by debug adapters that are specific to a language, since they need to trace back the stdout data to the method invocation.

I see. Unfortunate for my current case, but oh well.

Thanks for the quick responses!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants