Kirill Müller

Results 1542 comments of Kirill Müller

FWIW, whereami might be a more robust way to automatically determine the executable file name. This also works on MSYS2/Windows: https://github.com/gpakosz/whereami.

Reading `backtrace_initialize()` in `elf.c`, indeed it uses [`dl_iterate_phdr()`](https://linux.die.net/man/3/dl_iterate_phdr) to iterate over all open libraries. It has done so since the beginning, I can't find anything similar in `pecoff.c` . I...

Confirmed that this still applies for current master, and fixes the problems for regenerating main.css. However, with sass 3.4.25, I'm now getting +/- 1 differences for some colors (in individual...

Often, the workflow is to rig, change the code, rerun. When we change the code, we need `load_all()` anyway. I'd say the current solution works fine as is?

A first test didn't show the correct information when run in production. Need to understand where the srcrefs are lost and if we can keep them.

What would be the default for `max_indent` ?

Nested `` maybe, with the first level open by default? Indent seems to be lost, but we could tweak with an extra `` ? Expression 1 Expression 2 Expression 3

I have a use case for this. Should there be an option to restrict the scope to an environment or to the current package?

Maybe decompose enumeration and dependency computation? Enumeration would be a family of functions that enumerate members of environments/namespaces/... and return a suitable data structure.

Not sure if the generic is the best pattern here. Should we have a low-level API that consists of atomic operations (enumeration of objects, computation, pruning, display, ...)? The high-level...