Václav Kubernát
Václav Kubernát
I have another example similar to this: ```typescript type X = { foo: () => string | undefined } const x: X = { foo() { return undefined; }, }...
I can reproduce it on current master (ff3d914008e412b2da32696f5ff3328203429774).
I think the patch needs this: ```diff diff --git a/src/scrot.c b/src/scrot.c index d5b2664..578af9b 100644 --- a/src/scrot.c +++ b/src/scrot.c @@ -88,7 +88,6 @@ static Window scrotFindWindowByProperty(Display *, const Window, const Atom);...
>Was this also happening before https://github.com/resurrecting-open-source-projects/scrot/commit/c60a26cf2da831a6d5b8d1086e05213ea5bd365a? Or did you simply get no artifact before that? I simply get no artifacts before that commit. >Are you using a compositor? I don't...
>If you were defaulting to --line mode=edge then the --freeze option was not even working before https://github.com/resurrecting-open-source-projects/scrot/commit/c60a26cf2da831a6d5b8d1086e05213ea5bd365a. It would effectively do nothing. I had no idea. I know that `--freeze`...
Also, one more thing: I'm having problems with telling my `MyApp` to quit. It has an `exit()` method, so if I could somehow know when all the expectations get fullfilled,...
The point of DOCTEST_SUBCASE is that for every leaf subcase, the test is run exactly once, and every iteration it changes the "current" leaf. The advantage is that you can...
Okay, no worries. I thought it wouldn't be so easy. I'm closing this, but feel free to reopen, if you want to track this somehow.
Hello, I can confirm, that this issue is still relevant - even with Zod v4, and `loose()`, Symbols are not preserved. The only way to preserve symbols is to use...
Our usecase for this is that we have this custom format called "CPON", which is essentially a superset of JSON. In this format, there are objects (we call those "Map"),...