Timothee Cour
Timothee Cour
``` expected X but got Y ``` other compiler messages use the opposite order so that's not ideal (1 got, 2 expected) how about this then? ``` gotten X wanted...
> So, ignoring the alignment for a moment, the below is much better: and how exactly, does this help? the whole point of this PR is alignment; the constraints: *...
please vote: option 1: vote with 👍 ``` got X want Y ``` option 2: vote with 👀 ``` got X wanted Y ``` option 3: vote with 😕 ```...
PTAL, I went for the winning proposal in https://github.com/nim-lang/Nim/pull/18391#issuecomment-905682518 (not something worth getting thousands of votes for, the point is to move forward with a reasonable improvement); it now uses:...
> What's blocking this issue? Looks like some CI is failing 🤔 > #17756 (checks) not sure if these are related though. tchannels timeout is unrelated, but that is fixed...
> Effectively term rewriting macro should be able to find and rewrite any proc, if statement, case statement, for loop and etc. Up for discussion. @cooldome TRW are IMO the...
> Where is the RFC? I can make one once I'm satisfied with the API and add missing functionality. But this is already usable (modulo commits I haven't pushed yet)
Ya i saw that, `rr` is a great tool, but in no way a replacement for execution traces as provided by this PR: * rr is only available on linux...
thanks, this is useful. can any of the options you've tried do this: * report self-time, recursive time, and exact number of calls correctly for programs with recursive function invocations...
> Just curious: why use the current time, rather than pulling from /dev/random or /dev/urandom (*nix), or CryptGenRandom (Windows)? well we now have std/sysrand instead of having to call those...