|
|
|
|
|
by valty
847 days ago
|
|
> via what is essentially data tracing Value tracing is at runtime. JetBrains cannot trace how values flow through your code. To do this, you need to instrument all your code, and track all the transformations that occur for each value. It's really difficult to do if the language is not designed for it and there are a lot of performance implications. If your code is written in a functional paradigm it becomes much easier to trace...such as with rxjs. |
|