Gabe Levi
Gabe Levi
As of Flow v0.23.0, Flow only ships with the standard Promise definition. Users who want to use non-standard Promise APIs need to provide their own Promise lib file. Currently, fbjs...
As a workaround to https://github.com/ocsigen/lwt/issues/569, I recently switched to using non-blocking fds. This worked on Linux and OSX but broke my Windows build. While I'm not sure the cause of...
[On Windows, `Lwt_unix.waitpid` just delegates to `Unix.waitpid`](https://github.com/ocsigen/lwt/blob/3.1.0/src/unix/lwt_unix.cppo.ml#L2197), even without the `Unix.WNOHANG` flag. That means the process will make a blocking system call and the whole Lwt event loop gets stuck....
I had previously run into a bug with `Unix.select` on Windows, but I only just reported it: https://caml.inria.fr/mantis/view.php?id=7665 Long story short, when you have a fd set which is a...
OCaml's `Unix.select` takes three list of fds. If any fd in any list is `< 0` or `> FD_SETSIZE` then it will raise `Unix.Unix_error(EINVAL, "select", "")`. This is probably not...
In Flow, you can call a function an explicitly specify the types for the generics. For example ```javascript function foo(a: A, b: B): void {} foo("hello", 123); ``` This PR...
[The documentation for SafeParcel proguard](https://github.com/microg/SafeParcel/blob/master/proguard.txt) doesn't keep `SafeParcelable`. This has been causing some issues for me. I notice in a few places (like [here](https://github.com/microg/SafeParcel/blob/efb2c7f09f8f6d8cd2af295545314c1596df77a3/safe-parcel/src/main/java/org/microg/safeparcel/SafeParcelable.java#L29) and [here](https://github.com/microg/SafeParcel/blob/efb2c7f09f8f6d8cd2af295545314c1596df77a3/safe-parcel/src/main/java/org/microg/safeparcel/SafeParcelUtil.java#L142)) `SafeParcelable` is used. Configuring...
`require('source-map-support').removeFromCache('path/to/foo.js')` will remove `path/to/foo.js` from the source map cache. ## Motivation I use am using `babel-register`. At some point, my program notices that a file changes. So it calls ```...
### Preflight Checklist - [x] I have searched [existing issues](https://github.com/anthropics/claude-code/issues?q=is%3Aissue%20state%3Aopen%20label%3Abug) and this hasn't been reported yet - [x] This is a single bug report (please file separate reports for different...