(no title)
jihiggins | 2 years ago
the indexing step is basically building this db in the background, it's just kept out of view / hidden unless you're building ide plugins or whatever.
jihiggins | 2 years ago
the indexing step is basically building this db in the background, it's just kept out of view / hidden unless you're building ide plugins or whatever.
valty|2 years ago
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.
TeMPOraL|2 years ago